11 lines
345 B
Ruby
11 lines
345 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'mysql2'
|
|
|
|
client = Mysql2::Client.new(host: '127.0.0.1', username: :root)
|
|
|
|
client.query('DROP DATABASE IF EXISTS rating_test;')
|
|
client.query('CREATE DATABASE IF NOT EXISTS rating_test;')
|
|
|
|
ActiveRecord::Base.establish_connection(adapter: :mysql2, database: :rating_test, username: :root, host: '127.0.0.1')
|