summaryrefslogtreecommitdiff
path: root/db/migrate/20110303145153_create_auths.rb
blob: ba3a8fbe8c11840fcda6cb49c23e5235489f1081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreateAuths < ActiveRecord::Migration
  def self.up
    create_table :auths do |t|
      t.string :one_touch_hash
      t.integer :message_id

      t.timestamps
    end
  end

  def self.down
    drop_table :auths
  end
end