discourse/db/migrate/20120311201341_create_forum...

10 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