repo.or.cz
/
ecs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Fix sqlite3 regression
[ecs.git]
/
db
/
migrate
/
20110303145153_create_auths.rb
blob
b18e147e870b45a81acc9cb5ea2003b7190d061b
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
6
7
t.timestamps
8
end
9
end
10
11
def self.down
12
drop_table :auths
13
end
14
end