6 lines
138 B
Ruby
6 lines
138 B
Ruby
class AddCreatorToSplats < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :splats, :creator_id, :integer, null: false
|
|
end
|
|
end
|