Sha256: 7a9c17f6710244f7f999107d00c5b053ba57269a4e8001e616335fe3170e64bd
Contents?: true
Size: 376 Bytes
Versions: 11
Compression:
Stored size: 376 Bytes
Contents
class CreateMyAdminPermissions < ActiveRecord::Migration def self.up create_table :my_admin_permissions do |t| t.string :model, :limit => 75, :null => false t.string :name, :limit => 75, :null => false t.string :application, :limit => 75, :null => false t.timestamps end end def self.down drop_table :my_admin_permissions end end
Version data entries
11 entries across 11 versions & 1 rubygems