14 lines
344 B
Ruby
14 lines
344 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|