Sha256: 738b37e4f602efa64ac63102370c5a5111d08cf116f35f7476d34155c0bdd527
Contents?: true
Size: 619 Bytes
Versions: 54
Compression:
Stored size: 619 Bytes
Contents
class CreateAgentImportFiles < 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 :executed_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
54 entries across 54 versions & 13 rubygems