Sha256: afac64a35456b551cace0710c4b29a9a5732d20a0646cd01dd5878c95a61cfe6
Contents?: true
Size: 560 Bytes
Versions: 169
Compression:
Stored size: 560 Bytes
Contents
class CreateAgentImportFiles < ActiveRecord::Migration[4.2] 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 :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 end end
Version data entries
169 entries across 169 versions & 21 rubygems