Class: CreateProgramsVisitors
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateProgramsVisitors
- Defined in:
- lib/db/migrate/006_create_programs_visitors.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
8 9 10 |
# File 'lib/db/migrate/006_create_programs_visitors.rb', line 8 def self.down drop_table :programs_visitors end |
.up ⇒ Object
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 |