class CreateBanalBrainstorms

typed: true

Public Instance Methods

change() click to toggle source
# File server/redux-os/db/migrate/20190912173916_create_banal_brainstorms.rb, line 3
def change
  create_table :banal_brainstorms do |t|
    t.text :idea
    t.string :main_category
    t.string :priority
    t.string :status
    t.text :comments
    t.string :idea_owner

    t.timestamps
  end
end