13 lines
305 B
Ruby
13 lines
305 B
Ruby
|
class CreateThemeSettings < ActiveRecord::Migration[5.1]
|
||
|
def change
|
||
|
create_table :theme_settings do |t|
|
||
|
t.string :name, limit: 255, null: false
|
||
|
t.integer :data_type, null: false
|
||
|
t.text :value
|
||
|
t.integer :theme_id, null: false
|
||
|
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|