Files
baclight/db/migrate/20260513162029_create_providers.rb
Jason Jordan 5a90ea6e14 beta build
2026-06-17 23:23:36 -04:00

14 lines
306 B
Ruby

class CreateProviders < ActiveRecord::Migration[7.2]
def change
create_table :providers do |t|
t.string :name
t.integer :pb_entity_key
t.string :tax_id
t.string :family_id
t.belongs_to :provider_group, null: true, foreign_key: true
t.timestamps
end
end
end