Fix sqlite3 regression
[ecs.git] / db / migrate / 20110303145153_create_auths.rb
blobb18e147e870b45a81acc9cb5ea2003b7190d061b
1 class CreateAuths < ActiveRecord::Migration[4.2]
2   def self.up
3     create_table :auths do |t|
4       t.string :one_touch_hash
5       t.integer :message_id
7       t.timestamps
8     end
9   end
11   def self.down
12     drop_table :auths
13   end
14 end