summaryrefslogtreecommitdiff
path: root/db/migrate/20140406171456_create_pms.rb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-04-06 20:09:54 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-04-06 20:09:54 -0400
commitf3c395c56a644d976aa9a5608300557600bc683e (patch)
tree83cb961a721fa8c50903c70bb08ae14dd15ca58c /db/migrate/20140406171456_create_pms.rb
parent7575d8cc70a28b323db0486ed06ab8af33b1f21a (diff)
parentf85943114dba527a1f87abb03229553472f57c0c (diff)
solved merge conflicts
Diffstat (limited to 'db/migrate/20140406171456_create_pms.rb')
-rw-r--r--db/migrate/20140406171456_create_pms.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20140406171456_create_pms.rb b/db/migrate/20140406171456_create_pms.rb
new file mode 100644
index 0000000..93bb5c6
--- /dev/null
+++ b/db/migrate/20140406171456_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