rating/spec/support/db/migrate/create_globals_table.rb

9 lines
151 B
Ruby

# frozen_string_literal: true
class CreateGlobalsTable < ActiveRecord::Migration[5.0]
def change
create_table :globals do |t|
end
end
end