summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorAndrew8xx8 <avk@8xx8.ru>2013-03-25 00:39:38 +0400
committerAndrew8xx8 <avk@8xx8.ru>2013-03-25 00:39:38 +0400
commitb3dc4fb72146d439314bdb40377272a317974397 (patch)
tree3ccc3d4475953f9b6a2e23f8caddb62dd09686d5 /db/migrate
parent3b6228dc27fad65250884256bec05a66e1dff74c (diff)
downloadgitlab-ce-b3dc4fb72146d439314bdb40377272a317974397.tar.gz
Migrations to convert data added
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20130323174317_add_private_to_snippets.rb2
-rw-r--r--db/migrate/20130324203535_add_type_value_for_snippets.rb8
2 files changed, 9 insertions, 1 deletions
diff --git a/db/migrate/20130323174317_add_private_to_snippets.rb b/db/migrate/20130323174317_add_private_to_snippets.rb
index 427b530464d..92f3a5c7011 100644
--- a/db/migrate/20130323174317_add_private_to_snippets.rb
+++ b/db/migrate/20130323174317_add_private_to_snippets.rb
@@ -1,5 +1,5 @@
class AddPrivateToSnippets < ActiveRecord::Migration
def change
- add_column :snippets, :private, :boolean
+ add_column :snippets, :private, :boolean, null: false, default: true
end
end
diff --git a/db/migrate/20130324203535_add_type_value_for_snippets.rb b/db/migrate/20130324203535_add_type_value_for_snippets.rb
new file mode 100644
index 00000000000..8c05dd2cc71
--- /dev/null
+++ b/db/migrate/20130324203535_add_type_value_for_snippets.rb
@@ -0,0 +1,8 @@
+class AddTypeValueForSnippets < ActiveRecord::Migration
+ def up
+ Snippet.where("project_id IS NOT NULL").update_all(type: 'ProjectSnippet')
+ end
+
+ def down
+ end
+end