Sha256: 96ed81042b11b60d2a6842df6dadbe883720f2fe87b22046c0e0c245e5ce3fcc
Contents?: true
Size: 346 Bytes
Versions: 8
Compression:
Stored size: 346 Bytes
Contents
class RadminCreateSettings < ActiveRecord::Migration def self.up create_table :radmin_settings, :force => true do |t| t.string :key, :limit => 40, :null => false t.string :value t.timestamps end add_index :radmin_settings, :key, :uniq => true end def self.down drop_table :radmin_settings end end
Version data entries
8 entries across 4 versions & 1 rubygems