Sha256: 5013ff9470bb6ed42aecb94282509a6f296b786db4cb2db4d40cefde940ca104
Contents?: true
Size: 317 Bytes
Versions: 2
Compression:
Stored size: 317 Bytes
Contents
class CreateSystemConfigs < ActiveRecord::Migration def change create_table :system_configs do |t| t.string :key, null: false, limit: 128 t.text :value t.timestamps null: false end add_index :system_configs, :key, unique: true, name: :unique_system_configs end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
barkest_core-1.5.4.0 | db/migrate/20161108155029_create_system_configs.rb |
barkest_core-1.5.3.0 | db/migrate/20161108155029_create_system_configs.rb |