summaryrefslogtreecommitdiff
path: root/db/migrate/20140306222347_create_users.rb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-03-06 17:34:41 -0500
committerguntasgrewal <guntasgrewal@gmail.com>2014-03-06 17:34:41 -0500
commit0e8af95b4656d851cc43b45f8c48fd2c4d4c1ed2 (patch)
tree263f0e970f8ce981470e591d94d14700810d7853 /db/migrate/20140306222347_create_users.rb
parent240d8602fb6aaf249b33db7b0c2f8a72add63658 (diff)
parentf5d36fc67d1994b7cc1ce02e7be2767ffcb47857 (diff)
merge ready?
Diffstat (limited to 'db/migrate/20140306222347_create_users.rb')
-rw-r--r--db/migrate/20140306222347_create_users.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20140306222347_create_users.rb b/db/migrate/20140306222347_create_users.rb
new file mode 100644
index 0000000..8032870
--- /dev/null
+++ b/db/migrate/20140306222347_create_users.rb
@@ -0,0 +1,13 @@
+class CreateUsers < ActiveRecord::Migration
+ def change
+ create_table :users do |t|
+ t.string :name
+ t.string :email
+ t.string :user_name
+
+ t.timestamps
+ end
+ add_index :users, :email, unique: true
+ add_index :users, :user_name, unique: true
+ end
+end