Sha256: 84c51fd94480abec950d23a72d2737fff73ce719a192aadcf27a9c3d952ca5a4

Contents?: true

Size: 330 Bytes

Versions: 21

Compression:

Stored size: 330 Bytes

Contents

class CreateChildren < ActiveRecord::Migration
  def up
    create_table :children do |t|
      t.string :name, :null => false
      t.integer :parent_id, :null => false
      t.integer :position, :null => false
      t.timestamps
    end

    add_index :children, [:position]
  end

  def down
    drop_table :children
  end
end

Version data entries

21 entries across 6 versions & 1 rubygems

Version Path
activerecord-sortable-0.0.8 spec/dummy-3.2/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.8 spec/dummy-4.2/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.8 spec/dummy-4.1/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.8 spec/dummy-4.0/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.7 spec/dummy-4.0/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.7 spec/dummy-4.2/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.7 spec/dummy-4.1/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.7 spec/dummy-3.2/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.6 spec/dummy-4.0/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.6 spec/dummy-3.2/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.6 spec/dummy-4.1/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.6 spec/dummy-4.2/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.5 spec/dummy-3.2/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.5 spec/dummy-4.2/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.5 spec/dummy-4.1/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.5 spec/dummy-4.0/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.4 spec/dummy-4.0/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.4 spec/dummy-4.2/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.4 spec/dummy-4.1/db/migrate/20140721161122_create_children.rb
activerecord-sortable-0.0.4 spec/dummy-3.2/db/migrate/20140721161122_create_children.rb