mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
13 lines
274 B
Ruby
13 lines
274 B
Ruby
class CreateSiteSettings < ActiveRecord::Migration
|
|
def change
|
|
create_table :site_settings do |t|
|
|
t.string :name, null: false
|
|
t.text :description, null: false
|
|
t.integer :data_type, null: false
|
|
t.text :value
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|