2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00
discourse/db/migrate/20120311210245_create_sites.rb

8 lines
190 B
Ruby

class CreateSites < ActiveRecord::Migration[4.2]
def change
create_table :sites do |t|
t.string :title, limit: 100, null: false
t.timestamps null: false
end
end
end