Class: CreateProgramsVisitors

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/db/migrate/006_create_programs_visitors.rb

Class Method Summary collapse

Class Method Details

.downObject



8
9
10
# File 'lib/db/migrate/006_create_programs_visitors.rb', line 8

def self.down
  drop_table :programs_visitors
end

.upObject



2
3
4
5
6
# File 'lib/db/migrate/006_create_programs_visitors.rb', line 2

def self.up
  create_table :programs_visitors, :id => false do |t|
    t.references :program, :visitor, :default => 0, :null => false
  end
end