summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorjomo <github@jomo.tv>2013-07-28 02:47:10 +0200
committerjomo <github@jomo.tv>2013-07-28 02:47:10 +0200
commit2699751d8602c0320eb484fc024af441895111c0 (patch)
tree18bc0991b7f86ea041365ab2b9a6751cbb576d1b /db/schema.rb
parentc00532aff2e173b264874e58c85aeef9063ac457 (diff)
bunch of stuffs
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb23
1 files changed, 13 insertions, 10 deletions
diff --git a/db/schema.rb b/db/schema.rb
index a2af1bd..a1f6757 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20130526020734) do
+ActiveRecord::Schema.define(:version => 20130728003021) do
create_table "blogposts", :force => true do |t|
t.string "title"
@@ -30,20 +30,23 @@ ActiveRecord::Schema.define(:version => 20130526020734) do
end
create_table "users", :force => true do |t|
- t.string "name", :null => false
- t.string "ign", :null => false
- t.integer "rank", :default => 10, :null => false
- t.boolean "banned", :default => false
- t.string "email", :null => false
+ t.string "name", :null => false
+ t.string "ign", :null => false
+ t.integer "rank", :default => 10, :null => false
+ t.boolean "banned", :default => false
+ t.string "email", :null => false
t.text "about"
- t.string "password_digest", :null => false
+ t.string "password_digest", :null => false
t.string "last_ip"
t.string "skype"
- t.boolean "skype_public", :default => false
+ t.boolean "skype_public", :default => false
t.datetime "last_login"
t.datetime "last_active"
- t.datetime "created_at", :null => false
- t.datetime "updated_at", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.string "youtube"
+ t.string "youtube_channelname"
+ t.string "twitter"
end
end