Sha256: 75ab0e88df241069cc665b35f2e968f23fcc134a8240fef5fca888c807df21bf
Contents?: true
Size: 375 Bytes
Versions: 11
Compression:
Stored size: 375 Bytes
Contents
class CreateMyAdminConfigurations < ActiveRecord::Migration def self.up create_table :my_admin_configurations do |t| t.string :key t.string :name t.string :field_type t.string :hint t.text :value t.boolean :required t.timestamps end end def self.down drop_table :my_admin_configurations end end
Version data entries
11 entries across 11 versions & 1 rubygems