mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 15:56:31 +08:00
10 lines
229 B
Ruby
10 lines
229 B
Ruby
class CreateForums < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :forums do |t|
|
|
t.integer :site_id, null: false
|
|
t.string :title, limit: 100, null: false
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|