mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
8 lines
173 B
Ruby
8 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
|