Sha256: 66b7406226ffd5ed7d63274ef94dedf75ad92e47d4dddbd71f4f07a168297129
Contents?: true
Size: 440 Bytes
Versions: 23
Compression:
Stored size: 440 Bytes
Contents
class CreateDiscernerParameterCategories < ActiveRecord::Migration def change create_table :discerner_parameter_categories do |t| t.integer :dictionary_id, :null => false t.string :name, :null => false t.datetime :deleted_at t.timestamps end add_index :discerner_parameter_categories, [:name, :dictionary_id, :deleted_at], :unique => true, :name => 'index_discerner_parameter_categories' end end
Version data entries
23 entries across 23 versions & 1 rubygems