Sha256: 69548d56648819a82453595b4d9b3ba5365d38d3542777dcc08769884a0ffc61
Contents?: true
Size: 318 Bytes
Versions: 7
Compression:
Stored size: 318 Bytes
Contents
class CreateSysConfigs < ActiveRecord::Migration def self.up create_table :sys_configs do |t| t.column :name, :string t.column :value, :string t.column :description, :string t.column :priority, :integer end end def self.down drop_table :sys_configs end end
Version data entries
7 entries across 7 versions & 1 rubygems