Files
codeocean/db/migrate/20140701120126_create_consumers.rb

9 lines
159 B
Ruby

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