Sha256: 5fba5f6b1f00bd2c650b598164acdc7bbdc8c80cd2c8017dab837fef1570716f
Contents?: true
Size: 589 Bytes
Versions: 8
Compression:
Stored size: 589 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 :xtype, :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
8 entries across 8 versions & 1 rubygems