a11yist/db/migrate/20241124183246_create_projects.rb
david 8b4ffb83ec
Some checks failed
/ Run tests (push) Failing after 2m3s
/ Run system tests (push) Failing after 2m17s
/ Build, push and deploy image (push) Has been skipped
Added projects
2024-11-24 22:08:36 +01:00

9 lines
158 B
Ruby

class CreateProjects < ActiveRecord::Migration[8.0]
def change
create_table :projects do |t|
t.string :name
t.timestamps
end
end
end