class CreateWorkflows < ActiveRecord::Migration[8.0] def change create_table :workflows do |t| t.references :account, null: false, foreign_key: true t.string :name, null: false t.timestamps end end end