Sha256: 60943be88a3c61fc1688c74364ad2002fe1efe69b717a63a59eabe5920ad0f23

Contents?: true

Size: 408 Bytes

Versions: 2

Compression:

Stored size: 408 Bytes

Contents

class CreateHellOnEarthItems < ActiveRecord::Migration
  def self.up
    create_table :hell_on_earth_items do |t|
      t.integer :position
      t.integer :client_position
      t.integer :developer_position
      t.integer :parent_id
      t.integer :session_id
      t.string :tag
      t.boolean :published

      t.timestamps
    end
  end

  def self.down
    drop_table :hell_on_earth_items
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
aguids-positionable-0.2.1 test/rails_root/db/migrate/20090708183550_create_hell_on_earth_items.rb
aguids-positionable-0.2.2 test/rails_root/db/migrate/20090708183550_create_hell_on_earth_items.rb