Sha256: e23809a88635aa84cb44808d71369f47cfb233593c650c009a9e4d6125a7c249
Contents?: true
Size: 366 Bytes
Versions: 37
Compression:
Stored size: 366 Bytes
Contents
class CreateEnumerations < ActiveRecord::Migration def change create_table :enumerations, options: 'DEFAULT CHARSET=utf8' do |t| t.string :name, null: false, limit: 128 t.string :type, null: false t.timestamps end add_index :enumerations, :name add_index :enumerations, :type add_index :enumerations, [:name, :type] end end
Version data entries
37 entries across 37 versions & 1 rubygems