summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorRosemary Sanchez <rsanchez@madebyuppercut.com>2013-07-19 11:51:55 -0600
committerRosemary Sanchez <rsanchez@madebyuppercut.com>2013-07-19 14:34:32 -0600
commitb583467eacaf0ece284a294da98e9b94bf1d917b (patch)
tree186d6f366f46f37d8663140324f89c0a9ed7073f /db/migrate
parent5043ade1c2fa671f5c57c73bd8897f579c2af11c (diff)
Create SignUps model.
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20130719165834_create_sign_ups.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20130719165834_create_sign_ups.rb b/db/migrate/20130719165834_create_sign_ups.rb
new file mode 100644
index 0000000..bb874f2
--- /dev/null
+++ b/db/migrate/20130719165834_create_sign_ups.rb
@@ -0,0 +1,9 @@
+class CreateSignUps < ActiveRecord::Migration
+ def change
+ create_table :sign_ups do |t|
+ t.string :email
+
+ t.timestamps
+ end
+ end
+end