discourse/db/migrate/20120311201341_create_forum...

10 lines
212 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class CreateForums < ActiveRecord::Migration
def change
2013-02-25 11:42:20 -05:00
create_table :forums do |t|
t.integer :site_id, null: false
2013-02-05 14:16:51 -05:00
t.string :title, limit: 100, null: false
t.timestamps
end
end
end