summaryrefslogtreecommitdiff
path: root/db/migrate/20140422212630_create_users.rb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-04-22 19:13:01 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-04-22 19:13:01 -0400
commit38c2ff9637018d88db7083c76c133da3a72f4c31 (patch)
treeae5c381e7fe9493abfe8fa6c700df64648246fe2 /db/migrate/20140422212630_create_users.rb
parent3e86ffe1113a096541ea94567bffee79368fb863 (diff)
parent5c6d6dca48bf3d54f145e859e6d4c8b1befe1f09 (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'db/migrate/20140422212630_create_users.rb')
-rw-r--r--db/migrate/20140422212630_create_users.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20140422212630_create_users.rb b/db/migrate/20140422212630_create_users.rb
new file mode 100644
index 0000000..8032870
--- /dev/null
+++ b/db/migrate/20140422212630_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