mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-06-02 21:28:57 -04:00
12 lines
214 B
Ruby
12 lines
214 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateOrders < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :orders do |t|
|
|
t.string :member_id, null: false
|
|
|
|
t.timestamps null: true
|
|
end
|
|
end
|
|
end
|