summaryrefslogtreecommitdiff
path: root/db/migrate/00000000000002_create_users.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/00000000000002_create_users.rb')
-rw-r--r--db/migrate/00000000000002_create_users.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/db/migrate/00000000000002_create_users.rb b/db/migrate/00000000000002_create_users.rb
deleted file mode 100644
index 1da43af..0000000
--- a/db/migrate/00000000000002_create_users.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-class CreateUsers < ActiveRecord::Migration
- def change
- create_table :users do |t|
- t.string :name, :unique => true, :null => false
- t.string :password_digest, :null => false
- t.string :ign, :unique => true, :null => false
- t.string :email, :unique => true, :null => false
- t.string :confirm_code, :null => false
- t.text :about
- t.string :last_ip
- t.string :skype, :unique => true
- t.boolean :skype_public, :default => false
- t.string :youtube, :unique => true
- t.string :youtube_channelname
- t.string :twitter, :unique => true
- t.datetime :last_login
-
- t.references :role, :null => false
-
- t.timestamps
- end
- end
-end \ No newline at end of file