mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 18:35:28 +08:00
13 lines
283 B
Ruby
13 lines
283 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
|