12 lines
291 B
Ruby
12 lines
291 B
Ruby
class CreateYearlyFiles < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :yearly_files do |t|
|
|
t.references :organization, null: false, foreign_key: true
|
|
t.integer :year, null: false
|
|
t.references :auditor, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|