aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2017-11-14 16:06:14 +0100
committerTeddy Wing2017-11-14 16:06:14 +0100
commit0aa10eea8e8813b3578a3e471e933b3260ec5a54 (patch)
treec12339af305bc711d310889368712b95091bb4dd
parent42fdf544a1beca0edd418408f31f448d54f91ecc (diff)
downloadchouette-core-0aa10eea8e8813b3578a3e471e933b3260ec5a54.tar.bz2
Remove test migration for schema_spec.rb
I had created this as a temporary migration for testing the `bigint` spec in `schema_spec.rb`. Now that I've finished writing the spec, I don't need this any more. Refs #4951
-rw-r--r--db/migrate/20171114110225_test_bad_foreign_keys.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/db/migrate/20171114110225_test_bad_foreign_keys.rb b/db/migrate/20171114110225_test_bad_foreign_keys.rb
deleted file mode 100644
index 0f2f5311b..000000000
--- a/db/migrate/20171114110225_test_bad_foreign_keys.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-class TestBadForeignKeys < ActiveRecord::Migration
- def change
- create_table :bad_foreign_keys do |t|
- t.string :thing
- t.references :forei
- t.integer :quant
- t.references :anoth_for
-
- t.timestamps null: false
- end
- end
-end