9

Railsの外部でActiveRecordを使用しています。移行のスケルトンを生成するプログラム(およびそれらを収集して維持するシステム)が必要です。

誰かが提案をすることができますか?

4

5 に答える 5

3

rake を使いたくないが、それでも ActiveRecord::Migration のシステム部分を取得する場合は、以下を使用してプレーンな Ruby (レールなし) から浮き沈みを処理できます。

require 'active_record'
require 'benchmark'

# Migration method, which does not uses files in db/migrate but in-memory migrations
# Based on ActiveRecord::Migrator::migrate
def migrate(migrations, target_version = nil)

  direction = case
    when target_version.nil?    
      :up 
    when (ActiveRecord::Migrator::current_version == target_version)
      return # do nothing
    when ActiveRecord::Migrator::current_version > target_version
      :down
    else
      :up
  end

  ActiveRecord::Migrator.new(direction, migrations, target_version).migrate

  puts "Current version: #{ActiveRecord::Migrator::current_version}"
end

# MigrationProxy deals with loading Migrations from files, we reuse it
# to create instances of the migration classes we provide
class MigrationClassProxy < ActiveRecord::MigrationProxy 
  def initialize(migrationClass, version)
    super(migrationClass.name, version, nil, nil)
    @migrationClass = migrationClass
  end

  def mtime
    0
  end

  def load_migration
    @migrationClass.new(name, version)
  end    
end

# Hash of all our migrations
migrations = {
  2016_08_09_2013_00 => 
    class CreateSolutionTable < ActiveRecord::Migration[5.0]
      def change          
        create_table :solution_submissions do |t|
          t.string :problem_hash, index: true
          t.string :solution_hash, index: true
          t.float :resemblance
          t.timestamps
        end
      end 
      self # Necessary to get the class instance into the hash!
    end,

  2016_08_09_2014_16 =>  
    class CreateProductFields < ActiveRecord::Migration[5.0]

      # ...

      self
    end
}.map { |key,value| MigrationClassProxy.new(value, key) }

ActiveRecord::Base.establish_connection(
  :adapter => 'sqlite3',
  :database => 'XXX.db'
)

# Play all migrations (rake db:migrate)
migrate(migrations, migrations.last.version)

# ... or undo them (rake db:migrate VERSION=0)
migrate(migrations, 0)

class ApplicationRecord < ActiveRecord::Base
  self.abstract_class = true
end

class SolutionSubmission < ApplicationRecord

end
于 2016-08-09T22:43:05.987 に答える
3

Rails 以外のプロジェクトで Rails Database Migrations を使用するための gem があります。その名前は「standalone_migrations」です

ここにリンクがあります

https://github.com/thuss/standalone-migrations

于 2012-10-04T08:20:15.630 に答える
2

Rails の外でアクティブ レコードを使用する方法の最小限の例を作成しました。非 Rails (および非 Ruby) プロジェクトでの Rails 移行 (スタンドアロン移行)。

https://github.com/euclid1990/rails-migration

(サポート レール >= 5.2)

このリポジトリで Rake ファイルを参照できます。

于 2019-01-04T09:12:32.873 に答える