Sha256: a90c4719d8ac36760923ebfb92d58c72775e9f6c75435ebd3f9cc769c116af08
Contents?: true
Size: 1013 Bytes
Versions: 5
Compression:
Stored size: 1013 Bytes
Contents
# fx is a gem that lets Rails schema.rb capture postgres functions and triggers # # For it to work for our use case, we need it to define functions BEFORE tables when # doing a `rake db:schema:load`, so we can refer to functions as default values in our # tables. # # This is a known issue in fx, with a PR, but isn't yet merged/released, so we hack # in a patch to force it. Better than forking. # # Based on: https://github.com/teoljungberg/fx/pull/53/ # # We try to write future-compat code assuming that will be merged eventually.... require 'fx' if Fx.configuration.respond_to?(:dump_functions_at_beginning_of_schema) # we have the feature! Fx.configure do |config| config.dump_functions_at_beginning_of_schema = true end else # Fx does not have the feature, we have to patch it in require 'fx/schema_dumper/function' module Fx module SchemaDumper module Function def tables(stream) functions(stream) super end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
kithe-2.0.3 | lib/kithe/patch_fx.rb |
kithe-2.0.2 | lib/kithe/patch_fx.rb |
kithe-2.0.1 | lib/kithe/patch_fx.rb |
kithe-2.0.0 | lib/kithe/patch_fx.rb |
kithe-2.0.0.pre.rc1 | lib/kithe/patch_fx.rb |