diff --git a/MIT-LICENSE b/MIT-LICENSE index ec4ddd4..7e92fe0 100644 --- a/MIT-LICENSE +++ b/MIT-LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2010 [name of plugin creator] +Copyright (c) 2010 Julio Capote Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/test/debug.log b/test/debug.log index d6b9ef2..4a499f0 100644 --- a/test/debug.log +++ b/test/debug.log @@ -789,3 +789,24 @@ ExistentialTest::User Create (0.7ms) INSERT INTO "users" ("name") VALUES('fred') ExistentialTest::User Create (0.3ms) INSERT INTO "users" ("name") VALUES('bob') ExistentialTest::Post Create (0.6ms) INSERT INTO "posts" ("name", "user_id") VALUES('lolz', 2) + SQL (0.2ms) select sqlite_version(*) + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.5ms) DROP TABLE "users" + SQL (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (1.0ms) DROP TABLE "posts" + SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" varchar(255))  + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT version FROM "schema_migrations" + ExistentialTest::User Create (0.3ms) INSERT INTO "users" ("name") VALUES('fred') + ExistentialTest::User Create (0.2ms) INSERT INTO "users" ("name") VALUES('bob') + ExistentialTest::Post Create (1.0ms) INSERT INTO "posts" ("name", "user_id") VALUES('lolz', 2) diff --git a/test/existential_plugin.sqlite3 b/test/existential_plugin.sqlite3 index b63ffc7..8da4e21 100644 Binary files a/test/existential_plugin.sqlite3 and b/test/existential_plugin.sqlite3 differ