Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
more readme
Browse files Browse the repository at this point in the history
  • Loading branch information
capotej committed Apr 23, 2010
1 parent a2ad054 commit 2454e05
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion 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
Expand Down
21 changes: 21 additions & 0 deletions test/debug.log
Expand Up @@ -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)
Binary file modified test/existential_plugin.sqlite3
Binary file not shown.

0 comments on commit 2454e05

Please sign in to comment.