Files
grecia/db/migrate/20240425223908_drop_campaigns.rb
Javi Martín 10e66006c8 Remove the campaigns table
We stopped using the Campaign model in commit 448775a5e.
2024-11-13 15:55:20 +01:00

11 lines
290 B
Ruby

class DropCampaigns < ActiveRecord::Migration[7.0]
def change
drop_table :campaigns, id: :serial do |t|
t.string :name
t.string :track_id
t.datetime :created_at, precision: nil, null: false
t.datetime :updated_at, precision: nil, null: false
end
end
end