Files
finreport-analyzer/db/migrate/20260312000002_create_auditors.rb

14 lines
230 B
Ruby

class CreateAuditors < ActiveRecord::Migration[7.1]
def change
create_table :auditors do |t|
t.string :name
t.string :inn
t.string :ogrn
t.timestamps
end
add_index :auditors, :inn
end
end