Sha256: e7e6cc813e7666dbc4db18d2496af554fdb97aad9d3d386d5883523e3ae06f70
Contents?: true
Size: 620 Bytes
Versions: 9
Compression:
Stored size: 620 Bytes
Contents
class CreatePatronImportFiles < ActiveRecord::Migration def change create_table :agent_import_files do |t| t.integer :parent_id t.string :content_type t.integer :size t.integer :user_id t.text :note t.datetime :imported_at t.string :state t.string :agent_import_file_name t.string :agent_import_content_type t.integer :agent_import_file_size t.datetime :agent_import_updated_at t.timestamps end add_index :agent_import_files, :parent_id add_index :agent_import_files, :user_id add_index :agent_import_files, :state end end
Version data entries
9 entries across 9 versions & 1 rubygems