Method: CreateAppsettings.up

Defined in:
lib/six-updater-web/db/migrate/20090826185930_create_appsettings.rb

.upObject



4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/six-updater-web/db/migrate/20090826185930_create_appsettings.rb', line 4

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