6 lines
171 B
Ruby
6 lines
171 B
Ruby
|
|
class CreateInitStructure < ActiveRecord::Migration
|
||
|
|
def up
|
||
|
|
ActiveRecord::Base.connection.execute(IO.read(File.expand_path("../../init_db.sql", __FILE__)))
|
||
|
|
end
|
||
|
|
end
|