Implements targets and campaigns for conference
This commit is contained in:
parent
678fe38a25
commit
857ac43e74
40 changed files with 1086 additions and 44 deletions
14
db/migrate/20140616132456_create_campaigns.rb
Normal file
14
db/migrate/20140616132456_create_campaigns.rb
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue