mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05: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
|