Skip to content

Commit

Permalink
log commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kyanny committed Jan 19, 2010
1 parent c1ac90d commit 766a5f7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions depot/log/development.log
@@ -0,0 +1,25 @@
SQL (0.4ms)  SELECT name
FROM sqlite_master
WHERE type = 'table' AND NOT name = 'sqlite_sequence'

SQL (0.2ms) select sqlite_version(*)
SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
SQL (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
SQL (0.2ms)  SELECT name
FROM sqlite_master
WHERE type = 'table' AND NOT name = 'sqlite_sequence'

SQL (0.1ms) SELECT version FROM schema_migrations
Migrating to CreateProducts (20100119095254)
SQL (2.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "image_url" varchar(255), "created_at" datetime, "updated_at" datetime) 
SQL (1.9ms) INSERT INTO schema_migrations (version) VALUES ('20100119095254')
SQL (0.2ms)  SELECT name
FROM sqlite_master
WHERE type = 'table' AND NOT name = 'sqlite_sequence'

SQL (0.1ms) SELECT version FROM schema_migrations
SQL (0.2ms)  SELECT name
FROM sqlite_master
WHERE type = 'table' AND NOT name = 'sqlite_sequence'

SQL (0.0ms) PRAGMA index_list("products")

0 comments on commit 766a5f7

Please sign in to comment.