Sha256: d87336fccced36962983fcb77dcd579c22cdcd8523d370bc281220a5bd338a37
Contents?: true
Size: 446 Bytes
Versions: 74
Compression:
Stored size: 446 Bytes
Contents
class CreateAppsettings < ActiveRecord::Migration include Six::Dbmanager::Migrate def self.up create_table :appsettings do |t| t.string :name t.string :path t.string :exe t.string :params t.timestamps :lock_version => false end six_join(["appsetting", "sixconfig"]) end def self.down drop_table :appsettings six_join(["appsetting", "sixconfig"], :down) end end
Version data entries
74 entries across 74 versions & 1 rubygems