Files
codeocean/db/migrate/20140701120126_create_consumers.rb
2021-05-14 22:03:06 +02:00

11 lines
190 B
Ruby

# frozen_string_literal: true
class CreateConsumers < ActiveRecord::Migration[4.2]
def change
create_table :consumers do |t|
t.string :name
t.timestamps
end
end
end