Files
fizzy/db/migrate/20241018175019_create_workflows.rb
T
2024-10-21 15:33:30 -06:00

11 lines
233 B
Ruby

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