spec/dummy/log/development.log in cadenero-0.0.2.b6 vs spec/dummy/log/development.log in cadenero-0.0.2.b7

- old
+ new

@@ -368,5 +368,42 @@ Started GET "/" for 127.0.0.1 at 2013-07-13 21:44:06 -0500 Processing by Cadenero::V1::Account::DashboardController#index as HTML Parameters: {"default"=>:json} Filter chain halted as :authenticate_user! rendered or redirected Completed 422 Unprocessable Entity in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms) +Connecting to database specified by database.yml +  (7.2ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  +  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  +Migrating to CreateCadeneroV1Accounts (20130612061604) +  (0.1ms) BEGIN +  (6.7ms) CREATE TABLE "cadenero_accounts" ("id" serial primary key, "name" character varying(255), "subdomain" character varying(255), "authentication_token" character varying(255), "owner_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (0.9ms) CREATE INDEX "index_cadenero_accounts_on_owner_id" ON "cadenero_accounts" ("owner_id") +  (0.8ms) CREATE INDEX "index_cadenero_accounts_on_authentication_token" ON "cadenero_accounts" ("authentication_token") +  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130612061604') +  (1.1ms) COMMIT +Migrating to CreateCadeneroV1Users (20130612064652) +  (0.2ms) BEGIN +  (4.5ms) CREATE TABLE "cadenero_users" ("id" serial primary key, "email" character varying(255), "password_digest" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130612064652') +  (0.9ms) COMMIT +Migrating to CreateCadeneroV1Members (20130612073709) +  (0.2ms) BEGIN +  (4.5ms) CREATE TABLE "cadenero_members" ("id" serial primary key, "account_id" integer, "user_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.4ms) CREATE INDEX "index_cadenero_members_on_account_id" ON "cadenero_members" ("account_id") +  (6.1ms) CREATE INDEX "index_cadenero_members_on_user_id" ON "cadenero_members" ("user_id") +  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130612073709') +  (0.8ms) COMMIT +Migrating to AddAuthTokenToCadeneroMembers (20130715174857) +  (0.2ms) BEGIN +  (9.1ms) ALTER TABLE "cadenero_members" ADD COLUMN "auth_token" character varying(255) +  (1.3ms) CREATE INDEX "index_cadenero_members_on_auth_token" ON "cadenero_members" ("auth_token") +  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130715174857') +  (0.5ms) COMMIT +Migrating to RenameAuthenticationTokenToV1Account (20130717234244) +  (0.1ms) BEGIN +  (0.2ms) ALTER TABLE "cadenero_accounts" RENAME COLUMN "authentication_token" TO "auth_token" +  (1.1ms) CREATE INDEX "index_cadenero_accounts_on_auth_token" ON "cadenero_accounts" ("auth_token") +  (0.6ms) DROP INDEX "index_cadenero_accounts_on_authentication_token" +  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130717234244') +  (1.6ms) COMMIT +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"