Sha256: 08b3b437dc3bfa04dcd16d03d2749459c3dba8e7faf462755746b69b84ff4968
Contents?: true
Size: 353 Bytes
Versions: 13
Compression:
Stored size: 353 Bytes
Contents
# frozen_string_literal: true class CreateFieldGroups < ActiveRecord::Migration[4.2] def self.up create_table :field_groups do |t| t.string :name, limit: 64 t.string :label, limit: 128 t.integer :position t.string :hint t.timestamps end end def self.down drop_table :field_groups end end
Version data entries
13 entries across 13 versions & 1 rubygems