add models for Project, Task, Note, Category

This commit is contained in:
2025-06-11 19:56:30 +02:00
parent 2a458f74d6
commit 9906b291f1
29 changed files with 345 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
class CreateTasks < ActiveRecord::Migration[8.0]
def change
create_table :tasks do |t|
t.string :title
t.text :description
t.integer :priority
t.integer :status
t.integer :type
t.date :due_date
t.references :user, null: false, foreign_key: true
t.timestamps
end
end
end