custom_tables/db/migrate/002_create_custom_entities.rb

9 lines
229 B
Ruby

class CreateCustomEntities < ActiveRecord::Migration[4.2]
def change
create_table :custom_entities do |t|
t.references :custom_table, null: false, index: true
t.references :author, null: false
end
end
end