Sha256: f76c35a03463f957574dafb0bb9b71f2061af6eb7d6f2029281417f7372f6ad9
Contents?: true
Size: 317 Bytes
Versions: 7
Compression:
Stored size: 317 Bytes
Contents
class CreateFieldGroups < ActiveRecord::Migration 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
7 entries across 7 versions & 2 rubygems