(1.3ms)  CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
   (1.1ms)  CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
  ActiveRecord::SchemaMigration Load (0.1ms)  SELECT "schema_migrations".* FROM "schema_migrations"
Migrating to CreateAdeiaElements (20151003144041)
   (0.0ms)  begin transaction
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:

  class CreateAdeiaElements < ActiveRecord::Migration[4.2] (called from load at /Users/khcr/.rvm/gems/ruby-2.5.1/bin/rake:23)
   (0.3ms)  CREATE TABLE "adeia_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
  SQL (0.1ms)  INSERT INTO "schema_migrations" ("version") VALUES (?)  [["version", "20151003144041"]]
   (0.7ms)  commit transaction
Migrating to CreateAdeiaPermissions (20151003144208)
   (0.1ms)  begin transaction
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:

  class CreateAdeiaPermissions < ActiveRecord::Migration[4.2] (called from load at /Users/khcr/.rvm/gems/ruby-2.5.1/bin/rake:23)
   (0.3ms)  CREATE TABLE "adeia_permissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_type" varchar, "owner_id" integer, "adeia_element_id" integer, "permission_type" integer, "read_right" boolean DEFAULT 'f', "create_right" boolean DEFAULT 'f', "update_right" boolean DEFAULT 'f', "destroy_right" boolean DEFAULT 'f', "resource_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
   (0.0ms)  select sqlite_version(*)
   (0.1ms)  CREATE  INDEX "index_adeia_permissions_on_owner_type_and_owner_id" ON "adeia_permissions" ("owner_type", "owner_id")
   (0.0ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'

   (0.1ms)  CREATE  INDEX "index_adeia_permissions_on_adeia_element_id" ON "adeia_permissions" ("adeia_element_id")
  SQL (0.1ms)  INSERT INTO "schema_migrations" ("version") VALUES (?)  [["version", "20151003144208"]]
   (0.7ms)  commit transaction
Migrating to CreateAdeiaGroups (20151003144650)
   (0.0ms)  begin transaction
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:

  class CreateAdeiaGroups < ActiveRecord::Migration[4.2] (called from load at /Users/khcr/.rvm/gems/ruby-2.5.1/bin/rake:23)
   (0.2ms)  CREATE TABLE "adeia_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
  SQL (0.1ms)  INSERT INTO "schema_migrations" ("version") VALUES (?)  [["version", "20151003144650"]]
   (0.6ms)  commit transaction
Migrating to CreateAdeiaGroupUsers (20151003144706)
   (0.0ms)  begin transaction
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:

  class CreateAdeiaGroupUsers < ActiveRecord::Migration[4.2] (called from load at /Users/khcr/.rvm/gems/ruby-2.5.1/bin/rake:23)
   (0.4ms)  CREATE TABLE "adeia_group_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "adeia_group_id" integer, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
   (0.1ms)  CREATE  INDEX "index_adeia_group_users_on_adeia_group_id" ON "adeia_group_users" ("adeia_group_id")
   (0.0ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_group_users_on_adeia_group_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_group_users_on_adeia_group_id' AND type='index'

   (0.1ms)  CREATE  INDEX "index_adeia_group_users_on_user_id" ON "adeia_group_users" ("user_id")
  SQL (0.1ms)  INSERT INTO "schema_migrations" ("version") VALUES (?)  [["version", "20151003144706"]]
   (0.8ms)  commit transaction
Migrating to CreateAdeiaTokens (20151003150524)
   (0.0ms)  begin transaction
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:

  class CreateAdeiaTokens < ActiveRecord::Migration[4.2] (called from load at /Users/khcr/.rvm/gems/ruby-2.5.1/bin/rake:23)
   (0.3ms)  CREATE TABLE "adeia_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar, "is_valid" boolean, "adeia_permission_id" integer, "exp_at" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
   (0.1ms)  CREATE  INDEX "index_adeia_tokens_on_adeia_permission_id" ON "adeia_tokens" ("adeia_permission_id")
  SQL (0.1ms)  INSERT INTO "schema_migrations" ("version") VALUES (?)  [["version", "20151003150524"]]
   (0.9ms)  commit transaction
Migrating to CreateAdeiaActions (20151003150747)
   (0.0ms)  begin transaction
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:

  class CreateAdeiaActions < ActiveRecord::Migration[4.2] (called from load at /Users/khcr/.rvm/gems/ruby-2.5.1/bin/rake:23)
   (0.4ms)  CREATE TABLE "adeia_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
  SQL (0.1ms)  INSERT INTO "schema_migrations" ("version") VALUES (?)  [["version", "20151003150747"]]
   (0.7ms)  commit transaction
Migrating to CreateAdeiaActionPermissions (20151003150806)
   (0.0ms)  begin transaction
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:

  class CreateAdeiaActionPermissions < ActiveRecord::Migration[4.2] (called from load at /Users/khcr/.rvm/gems/ruby-2.5.1/bin/rake:23)
   (0.3ms)  CREATE TABLE "adeia_action_permissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "adeia_action_id" integer, "adeia_permission_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
   (0.1ms)  CREATE  INDEX "index_adeia_action_permissions_on_adeia_action_id" ON "adeia_action_permissions" ("adeia_action_id")
   (0.0ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_action_permissions_on_adeia_action_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_action_permissions_on_adeia_action_id' AND type='index'

   (0.1ms)  CREATE  INDEX "index_adeia_action_permissions_on_adeia_permission_id" ON "adeia_action_permissions" ("adeia_permission_id")
  SQL (0.1ms)  INSERT INTO "schema_migrations" ("version") VALUES (?)  [["version", "20151003150806"]]
   (0.7ms)  commit transaction
Migrating to CreateUsers (20151012185720)
   (0.0ms)  begin transaction
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:

  class CreateUsers < ActiveRecord::Migration[4.2] (called from load at /Users/khcr/.rvm/gems/ruby-2.5.1/bin/rake:23)
   (0.3ms)  CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "password_digest" varchar, "remember_token" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
  SQL (0.1ms)  INSERT INTO "schema_migrations" ("version") VALUES (?)  [["version", "20151012185720"]]
   (0.7ms)  commit transaction
Migrating to CreateArticles (20151012185726)
   (0.0ms)  begin transaction
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:

  class CreateArticles < ActiveRecord::Migration[4.2] (called from load at /Users/khcr/.rvm/gems/ruby-2.5.1/bin/rake:23)
   (0.3ms)  CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "content" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
   (0.1ms)  CREATE  INDEX "index_articles_on_user_id" ON "articles" ("user_id")
  SQL (0.1ms)  INSERT INTO "schema_migrations" ("version") VALUES (?)  [["version", "20151012185726"]]
   (0.8ms)  commit transaction
  ActiveRecord::InternalMetadata Load (0.1ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", :environment], ["LIMIT", 1]]
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["key", "environment"], ["value", "development"], ["created_at", 2019-02-02 10:22:38 UTC], ["updated_at", 2019-02-02 10:22:38 UTC]]
   (0.5ms)  commit transaction
  ActiveRecord::SchemaMigration Load (0.1ms)  SELECT "schema_migrations".* FROM "schema_migrations"
   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_action_permissions_on_adeia_permission_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_action_permissions_on_adeia_permission_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_action_permissions_on_adeia_action_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_action_permissions_on_adeia_action_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_group_users_on_user_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_group_users_on_user_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_group_users_on_adeia_group_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_group_users_on_adeia_group_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_permissions_on_adeia_element_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_permissions_on_adeia_element_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_tokens_on_adeia_permission_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_tokens_on_adeia_permission_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_articles_on_user_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_articles_on_user_id' AND type='index'

  ActiveRecord::SchemaMigration Load (0.2ms)  SELECT "schema_migrations".* FROM "schema_migrations"
  ActiveRecord::InternalMetadata Load (0.2ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", :environment], ["LIMIT", 1]]
   (0.0ms)  begin transaction
   (0.0ms)  commit transaction
  ActiveRecord::SchemaMigration Load (0.1ms)  SELECT "schema_migrations".* FROM "schema_migrations"
   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_action_permissions_on_adeia_permission_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_action_permissions_on_adeia_permission_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_action_permissions_on_adeia_action_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_action_permissions_on_adeia_action_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_group_users_on_user_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_group_users_on_user_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_group_users_on_adeia_group_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_group_users_on_adeia_group_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_permissions_on_adeia_element_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_permissions_on_adeia_element_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_adeia_tokens_on_adeia_permission_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_adeia_tokens_on_adeia_permission_id' AND type='index'

   (0.1ms)              SELECT sql
            FROM sqlite_master
            WHERE name='index_articles_on_user_id' AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name='index_articles_on_user_id' AND type='index'