Sha256: 41bb9bc507400ac5534358487f5f515287eabfcfa70fd77c2697ca5565a13fda
Contents?: true
Size: 322 Bytes
Versions: 8
Compression:
Stored size: 322 Bytes
Contents
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
8 entries across 8 versions & 1 rubygems