summaryrefslogtreecommitdiff
path: root/db/migrate/20140405010454_create_users.rb
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-04 21:07:32 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-04 21:07:32 -0400
commit1cca0b2c418d1c4a31a27c98d7b0951545303d2c (patch)
tree889ae82c823c87c33438c9b3f40c67a5036698de /db/migrate/20140405010454_create_users.rb
parent1627387966a4186a924bafd80cbd84c0861142b5 (diff)
parentb43bab15521c7c511ab7012bd137daa0e85bb95b (diff)
Merge branch 'clean2'
Conflicts: config/routes.rb db/schema.rb
Diffstat (limited to 'db/migrate/20140405010454_create_users.rb')
-rw-r--r--db/migrate/20140405010454_create_users.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20140405010454_create_users.rb b/db/migrate/20140405010454_create_users.rb
new file mode 100644
index 0000000..8032870
--- /dev/null
+++ b/db/migrate/20140405010454_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