This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/db/migrate/20200513194543_create_import_csvs.rb
2021-08-23 10:26:02 +02:00

18 lines
387 B
Ruby

class CreateImportCsvs < ActiveRecord::Migration[6.0]
def change
create_table :import_csvs do |t|
t.string :file
t.text :notes
t.boolean :imported, :default => false
t.string :table_name
t.datetime :imported_at
t.string :token
t.integer :parent_id
t.string :name
t.text :description
t.timestamps
end
end
end