Sha256: 05b097673d3299df13d14c16bb346414de2540e268bfa30533b11021251c67b2
Contents?: true
Size: 327 Bytes
Versions: 77
Compression:
Stored size: 327 Bytes
Contents
class CreateClassificationTypes < ActiveRecord::Migration[4.2] def self.up create_table :classification_types do |t| t.string :name, null: false t.text :display_name t.text :note t.integer :position t.timestamps end end def self.down drop_table :classification_types end end
Version data entries
77 entries across 77 versions & 8 rubygems