You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/db/migrate/20191019075105_create_modul...

13 lines
249 B

class CreateModuleSettings < ActiveRecord::Migration[5.2]
def change
create_table :module_settings do |t|
t.string :module_type
t.string :property
t.timestamps
end
add_index :module_settings, :module_type
end
end