Files
PMS/db/migrate/20260120093711_create_tasks.rb
2026-01-28 09:53:14 +06:30

11 lines
180 B
Ruby

class CreateTasks < ActiveRecord::Migration[5.1]
def change
create_table :tasks do |t|
t.string :title
t.boolean :completed
t.timestamps
end
end
end