SQLite format 3@ -$  C 4 =//indexunique_schema_migrationsschema_migrationsCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")q//tableschema_migrationsschema_migrationsCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)8CtablesiblingssiblingsCREATE TABLE "siblings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar(255), "name" varchar(255), "git_repo" varchar(255), "heroku_repo" varchar(255), "heroku_app_name" varchar(255), "main_app" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 55;tablesibling_instructionssibling_instructionsCREATE TABLE "sibling_instructions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar(255), "name" varchar(255), "published_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)h++tablesibling_deployssibling_deploysCREATE TABLE "sibling_deploys" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "sibling_id" integer, "instruction_id" integer, "manual" boolean, "state" varchar(255), "git_repo" varchar(255), "heroku_repo" varchar(255), "heroku_app_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)     213 21 3