Emi Matchu
5004142dfb
Nothing to show them yet, but I think this works for loading it all in the first place? Still needs contributions tho!
11 lines
328 B
Ruby
11 lines
328 B
Ruby
class CreateAltStyles < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :alt_styles do |t|
|
|
t.references :species, type: :integer, null: false, foreign_key: true
|
|
t.references :color, type: :integer, null: false, foreign_key: true
|
|
t.integer :body_id, null: false
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|