immigrant

Foreign key migration generator for Rails

  • Owner: jenseng/immigrant
  • Platform:
  • License:: MIT License
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

Immigrant

Immigrant gives Rails a foreign key migration generator so you can
effortlessly find and add missing keys. This is particularly helpful
when you decide to add keys to an established Rails app.

Installation

Add the following to your Gemfile:

gem 'immigrant'

If you're using a version of Rails prior to 4.2, you'll also need the
Foreigner gem.

Usage

rails generate immigration AddKeys

This will create a migration named AddKeys which will have add_foreign_key
statements for any missing foreign keys. Immigrant infers missing ones by
evaluating the associations in your models (e.g. belongs_to, has_many, etc.).
Only missing keys will be added; existing ones will never be altered or
removed.

Rake Task

To help you remember to add keys in the future, there's a handy rake
task you can add to your CI setup. Just run rake immigrant:check_keys,
and if anything is missing it will tell you about it and exit with a
non-zero status.

Skipping associations

Immigrant.ignore_keys allows you to specify a list of keys that should
be ignored (both in the migration generator and the rake task). This is
useful if you have associations spanning databases.

Just create an config/initializers/immigrant.rb file with something like
the following:

Immigrant.ignore_keys = [
  { from_table: "users", column: "account_id" },
  # etc
]

Considerations

If the data in your tables is bad, then the migration will fail to run
(obviously). IOW, ensure you don't have orphaned records before you try to
add foreign keys.

Known Issues

Immigrant currently only looks for foreign keys in ActiveRecord::Base's
database. So if a model is using a different database connection and it has
foreign keys, Immigrant will incorrectly include them again in the generated
migration. Immigrant.ignore_keys can be used to work around this.

Changelog

License

Copyright (c) 2012-2015 Jon Jensen, released under the MIT license

Main metrics

Overview
Name With Ownerjenseng/immigrant
Primary LanguageRuby
Program languageRuby (Language Count: 2)
Platform
License:MIT License
所有者活动
Created At2012-04-01 19:59:42
Pushed At2024-05-08 01:04:14
Last Commit At2017-02-26 12:59:30
Release Count12
Last Release Namev0.3.6 (Posted on )
First Release Namev0.1.5 (Posted on )
用户参与
Stargazers Count484
Watchers Count8
Fork Count24
Commits Count86
Has Issues Enabled
Issues Count28
Issue Open Count4
Pull Requests Count6
Pull Requests Open Count2
Pull Requests Close Count1
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private