class CreateProducts

Public Instance Methods

change() click to toggle source
# File lib/generators/initializer/templates/file.rb, line 2
def change
  create_table :back_scripts do |t|
    t.string :command_name
    t.string :command
    t.string :type
    t.string :active
    t.string :description
    t.timestamps
  end
end