mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-06 17:49:24 +00:00
12 lines
233 B
Ruby
12 lines
233 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreatePaymentsTable < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :payments do |t|
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :payments, [:payment_intent_id], unique: true
|
|
end
|
|
end
|