jam-cloud/ruby/db/migrate/20210202183522_create_init_...

7 lines
273 B
Ruby

class CreateInitStructure < ActiveRecord::Migration
def up
# this can't apply in production or staging, -- and schema.rb captures this test/dev environments
ActiveRecord::Base.connection.execute(IO.read(File.expand_path("../../init_db.sql", __FILE__)))
end
end