diff options
author | guntasgrewal <guntasgrewal@gmail.com> | 2014-04-06 22:05:17 -0400 |
---|---|---|
committer | guntasgrewal <guntasgrewal@gmail.com> | 2014-04-06 22:05:17 -0400 |
commit | aa7f5b6daa1012023f34c53f7772ca5567824e94 (patch) | |
tree | 4157fe9de1e84fc4cc9d5f7c5785a329d4ad5369 /db/migrate/20140406235958_create_pms.rb | |
parent | dd46c4b23640b0719e16e874b8f593e159b54a3c (diff) | |
parent | 5084f01e0ea7ba7c378982099fdbf9880857f091 (diff) |
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'db/migrate/20140406235958_create_pms.rb')
-rw-r--r-- | db/migrate/20140406235958_create_pms.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20140406235958_create_pms.rb b/db/migrate/20140406235958_create_pms.rb new file mode 100644 index 0000000..93bb5c6 --- /dev/null +++ b/db/migrate/20140406235958_create_pms.rb @@ -0,0 +1,11 @@ +class CreatePms < ActiveRecord::Migration + def change + create_table :pms do |t| + t.references :author, index: true + t.references :recipient, index: true + t.text :message + + t.timestamps + end + end +end |