summaryrefslogtreecommitdiff
path: root/db/migrate/20140325202838_create_users.rb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:30:10 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:30:10 -0400
commit0c22c4bd9a0b4a0b0ff5840c1af41c0b320e3529 (patch)
tree2fc2082814e513ec5d68b22e7fa07d268df6d788 /db/migrate/20140325202838_create_users.rb
parent8435c0a5ec9889a9da6ede2e24c044d64b279095 (diff)
added match status
Diffstat (limited to 'db/migrate/20140325202838_create_users.rb')
-rw-r--r--db/migrate/20140325202838_create_users.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20140325202838_create_users.rb b/db/migrate/20140325202838_create_users.rb
deleted file mode 100644
index 8032870..0000000
--- a/db/migrate/20140325202838_create_users.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-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