15 lines
336 B
Ruby
15 lines
336 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|