class CreateBigDiscreteModules

typed: true

Public Instance Methods

change() click to toggle source
# File server/redux-os/db/migrate/20190927090604_create_big_discrete_modules.rb, line 3
def change
  create_table :big_discrete_modules do |t|
    t.text :why
    t.text :how
    t.text :what
    t.text :when

    t.timestamps
  end
end