diff options
author | shumakl <shumakl@purdue.edu> | 2014-04-03 11:52:05 -0400 |
---|---|---|
committer | shumakl <shumakl@purdue.edu> | 2014-04-03 11:52:05 -0400 |
commit | 8e3e46b7951120f1ec34949d607a7672ad03f820 (patch) | |
tree | d2bfc79435a4ab5c5f2dccf159066e52d8090337 /db/migrate/20140403155014_create_pms.rb | |
parent | bed5a14c1e8bd4af7a066664f0ec2b57979bc96b (diff) |
run generate.sh
Diffstat (limited to 'db/migrate/20140403155014_create_pms.rb')
-rw-r--r-- | db/migrate/20140403155014_create_pms.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20140403155014_create_pms.rb b/db/migrate/20140403155014_create_pms.rb new file mode 100644 index 0000000..93bb5c6 --- /dev/null +++ b/db/migrate/20140403155014_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 |