mirror of
https://github.com/discourse/discourse.git
synced 2025-03-07 14:55:30 +08:00
10 lines
224 B
Ruby
10 lines
224 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
|