You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
342 B

class AddCoverLetters < ActiveRecord::Migration[7.0]
def change
create_table :cover_letters do |t|
t.string :title
t.string :company_name
t.string :job_application
t.date :date_override
t.integer :order, default: 0
t.references :user
t.text :csv_paragraphs
t.timestamps
end
end
end