diff options
| author | Luc Donnet | 2015-01-30 14:34:27 +0100 | 
|---|---|---|
| committer | Luc Donnet | 2015-01-30 14:34:27 +0100 | 
| commit | b9147ae5a58c1395493e04f289b98722f10c7622 (patch) | |
| tree | 01bac932432375ff156efc1cfbafd8d51e9a79c2 | |
| parent | 7456e9bb4830e49416116e922968f6bdba684f1f (diff) | |
| download | chouette-core-b9147ae5a58c1395493e04f289b98722f10c7622.tar.bz2 | |
Commit schema to fix travis
| -rw-r--r-- | db/schema.rb | 14 | 
1 files changed, 8 insertions, 6 deletions
| diff --git a/db/schema.rb b/db/schema.rb index 718dc9f66..eb74205b4 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@  #  # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20141216085004) do +ActiveRecord::Schema.define(version: 20150130094642) do    # These are extensions that must be enabled in order to support this database    enable_extension "plpgsql" @@ -504,12 +504,12 @@ ActiveRecord::Schema.define(version: 20141216085004) do    add_index "time_tables_vehicle_journeys", ["vehicle_journey_id"], name: "index_time_tables_vehicle_journeys_on_vehicle_journey_id", using: :btree    create_table "users", force: true do |t| -    t.string   "email",                             default: "", null: false -    t.string   "encrypted_password",                default: "" +    t.string   "email",                  default: "", null: false +    t.string   "encrypted_password",     default: ""      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" @@ -522,19 +522,21 @@ ActiveRecord::Schema.define(version: 20141216085004) do      t.datetime "confirmed_at"      t.datetime "confirmation_sent_at"      t.string   "unconfirmed_email" -    t.integer  "failed_attempts",                   default: 0 +    t.integer  "failed_attempts",        default: 0      t.string   "unlock_token"      t.datetime "locked_at"      t.string   "authentication_token" -    t.string   "invitation_token",       limit: 60 +    t.string   "invitation_token"      t.datetime "invitation_sent_at"      t.datetime "invitation_accepted_at"      t.integer  "invitation_limit"      t.integer  "invited_by_id"      t.string   "invited_by_type" +    t.datetime "invitation_created_at"    end    add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree +  add_index "users", ["invitation_token"], name: "index_users_on_invitation_token", unique: true, using: :btree    add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree    create_table "vehicle_journey_at_stops", force: true do |t| | 
