discourse/db/migrate/20120311210245_create_sites.rb

9 lines
173 B
Ruby
Raw Normal View History

2013-02-06 03:16:51 +08:00
class CreateSites < ActiveRecord::Migration
def change
create_table :sites do |t|
t.string :title, limit: 100, null: false
t.timestamps
end
end
end