2013-02-06 03:16:51 +08:00
|
|
|
class CreateForums < ActiveRecord::Migration
|
|
|
|
def change
|
2013-02-26 00:42:20 +08:00
|
|
|
create_table :forums do |t|
|
|
|
|
t.integer :site_id, null: false
|
2013-02-06 03:16:51 +08:00
|
|
|
t.string :title, limit: 100, null: false
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|