Migrations to convert data added

This commit is contained in:
Andrew8xx8 2013-03-25 00:39:38 +04:00
parent 3b6228dc27
commit b3dc4fb721
3 changed files with 14 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20130324172327) do
ActiveRecord::Schema.define(:version => 20130324203535) do
create_table "events", :force => true do |t|
t.string "target_type"
@ -184,13 +184,13 @@ ActiveRecord::Schema.define(:version => 20130324172327) do
create_table "snippets", :force => true do |t|
t.string "title"
t.text "content"
t.integer "author_id", :null => false
t.integer "author_id", :null => false
t.integer "project_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "file_name"
t.datetime "expires_at"
t.boolean "private"
t.boolean "private", :default => true, :null => false
t.string "type"
end