summaryrefslogtreecommitdiff
path: root/db/migrate/20090310190600_create_events.rb
blob: da220d362c9efdbc34030074037bb92ba124e384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateEvents < ActiveRecord::Migration
  def self.up
    create_table :events do |t|
      t.text :serialized_event

      t.timestamps
    end
  end

  def self.down
    drop_table :events
  end
end