AutoCommit Mon Jun 8 22:03:14 CEST 2015

This commit is contained in:
Andreas Stephanides
2015-06-08 22:03:14 +02:00
parent 18021fb502
commit cc2ab28d16
11 changed files with 83 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
class CreateKeys < ActiveRecord::Migration
def change
create_table :keys do |t|
t.string :uuid
t.datetime :expire
t.string :parent_type
t.integer:parent_id
t.integer :typ
t.integer :user_id
t.boolean :is_valid
t.timestamps
end
end
end