Sha256: 2ac9b1275fff296bcef45e585f7c6f51324556ae37ef6a8daecfc720255407f7

Contents?: true

Size: 223 Bytes

Versions: 5

Compression:

Stored size: 223 Bytes

Contents

class BoxroomCreateGroups < ActiveRecord::Migration[5.0]
  def self.up
    create_table :boxroom_groups do |t|
      t.string :name
      t.timestamps
    end
  end

  def self.down
    drop_table :boxroom_groups
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
boxroom-0.0.5 db/migrate/20100930091451_boxroom_create_groups.rb
boxroom-0.0.4 db/migrate/20100930091451_boxroom_create_groups.rb
boxroom-0.0.3 db/migrate/20100930091451_boxroom_create_groups.rb
boxroom-0.0.2 db/migrate/20100930091451_boxroom_create_groups.rb
boxroom-0.0.1 db/migrate/20100930091451_boxroom_create_groups.rb