Sha256: 1c8bf71096a5444e2ecad573ba6d4bb1b2b716828f5e36799ab36b99435699d9
Contents?: true
Size: 550 Bytes
Versions: 12
Compression:
Stored size: 550 Bytes
Contents
class CreateNetzkeGridPanelColumns < ActiveRecord::Migration def self.up create_table :netzke_grid_panel_columns do |t| t.string :name t.string :label t.boolean :read_only t.boolean :hidden t.integer :width t.string :editor, :limit => 32 t.string :renderer, :limit => 32 t.string :ext_config, :limit => 1024 t.integer :position t.integer :layout_id t.timestamps end end def self.down drop_table :netzke_grid_panel_columns end end
Version data entries
12 entries across 10 versions & 1 rubygems