1
0
mirror of synced 2026-08-05 14:47:03 +00:00
Files

13 lines
311 B
Ruby
Raw Permalink Normal View History

2020-05-22 11:20:05 -05:00
# frozen_string_literal: true
class CreateSubscriptions < ActiveRecord::Migration[6.0]
def change
create_table :discourse_subscriptions_subscriptions do |t|
t.integer :customer_id, null: false, index: true
t.string :external_id, null: false, index: true
t.timestamps
end
end
end