Sha256: 3ece12f3c92871748b00476242b0feab357e46c0d5545a7fcf43256ed71216b3
Contents?: true
Size: 310 Bytes
Versions: 11
Compression:
Stored size: 310 Bytes
Contents
class CreateUseRestrictions < ActiveRecord::Migration def self.up create_table :use_restrictions 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 :use_restrictions end end
Version data entries
11 entries across 11 versions & 3 rubygems