Sha256: b14b54bd5a0475e1539499e127d760d0a8853ae71c60174149a4a6215ec5efe6
Contents?: true
Size: 377 Bytes
Versions: 23
Compression:
Stored size: 377 Bytes
Contents
# Probably temporary, a spot to stash module names and their associated refs # Don't count on it being populated at any given moment. class AddModRefTable < ActiveRecord::Migration[4.2] def self.up create_table :mod_refs do |t| t.string :module, :limit => 1024 t.string :mtype, :limit => 128 t.text :ref end end def self.down drop_table :mod_refs end end
Version data entries
23 entries across 23 versions & 2 rubygems