Sha256: 1c6d3dcf1c511161c987f6112dfd9c2d573994ecb717819d46f61a783c6b37af
Contents?: true
Size: 343 Bytes
Versions: 16
Compression:
Stored size: 343 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
16 entries across 16 versions & 1 rubygems