mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:50:14 +08:00
9 lines
173 B
Ruby
9 lines
173 B
Ruby
class CreateSites < ActiveRecord::Migration
|
|
def change
|
|
create_table :sites do |t|
|
|
t.string :title, limit: 100, null: false
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|