14 lines
229 B
Ruby
14 lines
229 B
Ruby
class CreateSiteSettings < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :site_settings do |t|
|
|
t.text :settings
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :site_settings
|
|
end
|
|
end
|