SQLite format 3@  -!   )20120929185302)20120922010743)20120907230842)20120907174827 )20120929185302)20120922010743)20120907230842)20120907174827      cq//tableschema_migrationsschema_migrationsCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)=//indexunique_schema_migrationsschema_migrationsCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")>KtablecountriescountriesCREATE TABLE "countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq) ?0l = indexindex_streets_on_city_idstreets CREATE INDEX "index_streets_on_city_id" ON "streets" ("city_id")Kmtablestreetsstreets CREATE TABLE "streets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "city_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)KqtablecitiescitiesCREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "country_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)qAindexindex_cities_on_country_idcitiesCREATE INDEX "index_cities_on_country_id" ON "cities" ("country_id")>KtablelanguageslanguagesCREATE TABLE "languages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)