summaryrefslogtreecommitdiff
path: root/db/migrate/20130324172327_change_project_id_to_null_in_snipepts.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130324172327_change_project_id_to_null_in_snipepts.rb')
-rw-r--r--db/migrate/20130324172327_change_project_id_to_null_in_snipepts.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/db/migrate/20130324172327_change_project_id_to_null_in_snipepts.rb b/db/migrate/20130324172327_change_project_id_to_null_in_snipepts.rb
deleted file mode 100644
index 9256e62086e..00000000000
--- a/db/migrate/20130324172327_change_project_id_to_null_in_snipepts.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-# rubocop:disable all
-class ChangeProjectIdToNullInSnipepts < ActiveRecord::Migration
- def up
- change_column :snippets, :project_id, :integer, :null => true
- end
-
- def down
- change_column :snippets, :project_id, :integer, :null => false
- end
-end