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

9 lines
151 B
Ruby
Raw Normal View History

2018-03-05 23:26:50 +00:00
# frozen_string_literal: true
class CreateGlobalsTable < ActiveRecord::Migration[7.0]
2018-03-05 23:26:50 +00:00
def change
create_table :globals do |t|
end
end
end