summaryrefslogtreecommitdiff
path: root/db/migrate/20140304015422_create_alerts.rb
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-03-01 19:59:36 -0500
committerAndrewMurrell <amurrel@purdue.edu>2014-03-01 19:59:36 -0500
commitae3b9a846a1a08865bc8fe2f38a24bbb01e8622c (patch)
tree8bdd4816a54d1a6c0c317f80a2a0ab8806b35a4d /db/migrate/20140304015422_create_alerts.rb
parente73f2a30699cc7ce9c7959ede513aec8c3942586 (diff)
Made the start script sent 2> to a file called server.talk for later reference.
Diffstat (limited to 'db/migrate/20140304015422_create_alerts.rb')
-rw-r--r--db/migrate/20140304015422_create_alerts.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20140304015422_create_alerts.rb b/db/migrate/20140304015422_create_alerts.rb
new file mode 100644
index 0000000..68a8e10
--- /dev/null
+++ b/db/migrate/20140304015422_create_alerts.rb
@@ -0,0 +1,10 @@
+class CreateAlerts < ActiveRecord::Migration
+ def change
+ create_table :alerts do |t|
+ t.references :author, index: true
+ t.text :message
+
+ t.timestamps
+ end
+ end
+end