diff options
| author | mo khan <mo@mokhan.ca> | 2013-06-16 09:22:20 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2013-06-16 09:22:20 -0600 |
| commit | 30b4f6266cd554388bf96cc8d754205a3f5bd630 (patch) | |
| tree | 66323bf01add1335594b4f18bcfcbc2102c29f08 /db | |
| parent | fd296adbd10d43e98f201f33ea397d48396c9844 (diff) | |
change log level to warn in staging
Diffstat (limited to 'db')
| -rw-r--r-- | db/schema.rb | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/db/schema.rb b/db/schema.rb index dc3fa252..2791c986 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -29,18 +29,18 @@ ActiveRecord::Schema.define(:version => 20130505042432) do add_index "active_admin_comments", ["resource_type", "resource_id"], :name => "index_admin_notes_on_resource_type_and_resource_id" create_table "admin_users", :force => true do |t| - t.string "email", :default => "", :null => false - t.string "encrypted_password", :limit => 128, :default => "", :null => false + t.string "email", :default => "", :null => false + t.string "encrypted_password", :default => "", :null => false t.string "reset_password_token" t.datetime "reset_password_sent_at" t.datetime "remember_created_at" - t.integer "sign_in_count", :default => 0 + t.integer "sign_in_count", :default => 0 t.datetime "current_sign_in_at" t.datetime "last_sign_in_at" t.string "current_sign_in_ip" t.string "last_sign_in_ip" - t.datetime "created_at", :null => false - t.datetime "updated_at", :null => false + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false end add_index "admin_users", ["email"], :name => "index_admin_users_on_email", :unique => true @@ -57,8 +57,8 @@ ActiveRecord::Schema.define(:version => 20130505042432) do create_table "categories", :force => true do |t| t.string "name" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.string "slug" end @@ -84,8 +84,8 @@ ActiveRecord::Schema.define(:version => 20130505042432) do create_table "creations", :force => true do |t| t.string "name" t.text "story" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.integer "user_id" t.string "image" t.boolean "is_restricted", :default => false, :null => false @@ -123,8 +123,8 @@ ActiveRecord::Schema.define(:version => 20130505042432) do create_table "favorites", :force => true do |t| t.integer "user_id" t.integer "creation_id" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false end add_index "favorites", ["creation_id"], :name => "index_favorites_on_creation_id" @@ -139,8 +139,8 @@ ActiveRecord::Schema.define(:version => 20130505042432) do create_table "photos", :force => true do |t| t.integer "creation_id" t.string "image" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.string "image_tmp" end @@ -179,18 +179,18 @@ ActiveRecord::Schema.define(:version => 20130505042432) do add_index "tutorials", ["user_id"], :name => "index_tutorials_on_user_id" create_table "users", :force => true do |t| - t.string "email", :default => "", :null => false - t.string "encrypted_password", :limit => 128, :default => "", :null => false + t.string "email", :default => "", :null => false + t.string "encrypted_password", :default => "", :null => false t.string "reset_password_token" t.datetime "reset_password_sent_at" t.datetime "remember_created_at" - t.integer "sign_in_count", :default => 0 + t.integer "sign_in_count", :default => 0 t.datetime "current_sign_in_at" t.datetime "last_sign_in_at" t.string "current_sign_in_ip" t.string "last_sign_in_ip" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.string "name" t.string "website" t.string "twitter" |
