11 lines
270 B
Ruby
11 lines
270 B
Ruby
class CreateCategorizations < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :categorizations do |t|
|
|
t.references :splat, null: false, foreign_key: true
|
|
t.references :category, null: false, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|