mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
16 lines
352 B
Ruby
16 lines
352 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateCampaigns < ActiveRecord::Migration
|
|
def change
|
|
create_table :campaigns do |t|
|
|
t.integer :conference_id
|
|
t.string :name
|
|
t.string :utm_source
|
|
t.string :utm_medium
|
|
t.string :utm_term
|
|
t.string :utm_content
|
|
t.string :utm_campaign
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|