mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
9 lines
212 B
Ruby
9 lines
212 B
Ruby
class CreateForums < ActiveRecord::Migration
|
|
def change
|
|
create_table :forums do |t|
|
|
t.integer :site_id, null: false
|
|
t.string :title, limit: 100, null: false
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|