mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-05 20:23:16 +08:00
* Remove check for database in migrations [SCI-11213] * Bump version to 1.37.0.1 * Bump version to 1.38.0.1 --------- Co-authored-by: Andrej <andrej.jugovic7@gmail.com>
8 lines
191 B
Ruby
8 lines
191 B
Ruby
require File.expand_path('app/helpers/database_helper')
|
|
include DatabaseHelper
|
|
|
|
class AddBtreeGistExtension < ActiveRecord::Migration[4.2]
|
|
def up
|
|
enable_extension :btree_gist
|
|
end
|
|
end
|