Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/svenfuchs/data_migrations


https://github.com/svenfuchs/data_migrations

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# data\_migrations [![Build Status](https://secure.travis-ci.org/svenfuchs/data_migrations.png)](http://travis-ci.org/svenfuchs/data_migrations)

class CreateBuilds < ActiveRecord::Migration
def self.up
create_table :tests do |t|
# ...
end

migrate_table :builds, :to => :tests |t|
t.where 'parent_id IS NULL'
t.move :number
t.copy :parent_id, :to => :build_id
t.copy :commit, :result, :to => [:hash, :status]
t.copy :all

# t.copy :all, :except => :foo
# t.exec 'UPDATE foo ...'
# t.set :source, 'github'
end
end

def self.down
# revert the whole thing. not sure we can derive this automatically?

migrate_table :builds, :to => :tests |t|
t.move :number
t.copy :build_id, :to => :parent_id
t.copy :hash, :status, :to => [:commit, :result]
end

drop_table :tests
end
end