Sha256: 554ec892695ae89a20776e11e7926970c17181f37f10a5ffadcb7e78abdb2189
Contents?: true
Size: 365 Bytes
Versions: 110
Compression:
Stored size: 365 Bytes
Contents
class AddLoots < ActiveRecord::Migration def self.up create_table :loots do |t| t.integer :workspace_id, :null => false, :default => 1 t.integer :host_id t.integer :service_id t.string :ltype, :limit => 512 t.string :path, :limit => 1024 t.text :data t.timestamps end end def self.down drop_table :loots end end
Version data entries
110 entries across 110 versions & 1 rubygems