1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 04:09:53 +00:00
discourse/db/migrate/20180118215249_create_theme_settings.rb

13 lines
305 B
Ruby
Raw Normal View History

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