(2.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)   (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateEmployees (20150901103114)  (0.1ms) BEGIN  (2.5ms) CREATE TABLE "employees" ("id" serial primary key, "name" character varying, "dob" date, "joined" date, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150901103114"]]  (0.6ms) COMMIT ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete FROM pg_constraint c JOIN pg_class t1 ON c.conrelid = t1.oid JOIN pg_class t2 ON c.confrelid = t2.oid JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid JOIN pg_namespace t3 ON c.connamespace = t3.oid WHERE c.contype = 'f' AND t1.relname = 'employees' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname  Started GET "/" for ::1 at 2016-03-30 14:32:58 +0100 ActiveRecord::SchemaMigration Load (1.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /Users/stephenrichards/.rvm/gems/ruby-2.2.1/gems/railties-4.2.5.1/lib/rails/templates/rails/welcome/index.html.erb (1.9ms) Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms) Started GET "/employees" for ::1 at 2016-03-30 14:33:05 +0100 Processing by EmployeesController#index as HTML Employee Load (0.9ms) SELECT "employees".* FROM "employees" Rendered employees/index.html.erb within layouts/application (11.1ms) Completed 200 OK in 171ms (Views: 168.0ms | ActiveRecord: 1.4ms) Started GET "/assets/scaffold.self-83b741db49389dc7cfdf85bf7537a0219cce48e085c4116afc83d55c9af47c78.css?body=1" for ::1 at 2016-03-30 14:33:05 +0100 Started GET "/assets/employees.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2016-03-30 14:33:05 +0100 Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-03-30 14:33:05 +0100 Started GET "/assets/employees.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2016-03-30 14:33:05 +0100 Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-03-30 14:33:05 +0100 Started GET "/employees/new" for ::1 at 2016-03-30 14:33:08 +0100 Processing by EmployeesController#new as HTML Rendered employees/_form.html.erb (12.6ms) Rendered employees/new.html.erb within layouts/application (17.4ms) Completed 200 OK in 30ms (Views: 24.4ms | ActiveRecord: 2.2ms)