Class: AddEventsTable
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- AddEventsTable
- Defined in:
- db/migrate/004_add_events_table.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
12 13 14 |
# File 'db/migrate/004_add_events_table.rb', line 12 def self.down drop_table :events end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 |
# File 'db/migrate/004_add_events_table.rb', line 2 def self.up create_table :events do |t| t.integer :workspace_id t.integer :host_id t. :created_at t.string :user t.string :name t.string :info end end |