Sha256: 2facecc2bf8dfdd0f8284c576bb5c15872636298e90130bce870d233992b0166
Contents?: true
Size: 817 Bytes
Versions: 2
Compression:
Stored size: 817 Bytes
Contents
CREATE TABLE "error_duplicators" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" text, "body" text, "published" boolean, "created_at" datetime, "updated_at" datetime); CREATE TABLE "example_prgs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" text, "body" text, "published" boolean, "created_at" datetime, "updated_at" datetime); CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL); CREATE UNIQUE INDEX "index_error_duplicators_on_subject" ON "error_duplicators" ("subject"); CREATE UNIQUE INDEX "index_example_prgs_on_subject" ON "example_prgs" ("subject"); CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version"); INSERT INTO schema_migrations (version) VALUES ('20140225004609'); INSERT INTO schema_migrations (version) VALUES ('20140225070319');
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rails-prg-0.1.1 | spec/dummy/db/structure.sql |
rails-prg-0.1.0 | spec/dummy/db/structure.sql |