2019-10-29 20:22:40 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-10-25 20:31:19 -04:00
|
|
|
class CreateCustomers < ActiveRecord::Migration[5.2]
|
|
|
|
def change
|
|
|
|
create_table :discourse_patrons_customers do |t|
|
|
|
|
t.string :customer_id, null: false
|
|
|
|
t.references :user, foreign_key: true
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index :discourse_patrons_customers, :customer_id, unique: true
|
|
|
|
end
|
|
|
|
end
|