Sha256: effa92a283ddddc6b324403c012719b954ef1e6389f17d62a318024b6965e041
Contents?: true
Size: 363 Bytes
Versions: 3
Compression:
Stored size: 363 Bytes
Contents
class JsdocCreateThrowsTable < ActiveRecord::Migration def self.up create_table :jsdoc_throws do |t| t.integer :function_id t.string :throw_type t.text :description t.timestamps end add_index :jsdoc_throws, :function_id add_index :jsdoc_throws, :throw_type end def self.down drop_table :jsdoc_throws end end
Version data entries
3 entries across 3 versions & 1 rubygems