Skip to content

Commit

Permalink
Add dummy migration
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianPasquale committed Mar 11, 2025
1 parent d26352e commit 78a40de
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
pull_request:
push:
branches: [main]
# branches: [main]

permissions:
pull-requests: write
Expand Down
9 changes: 9 additions & 0 deletions db/migrate/20250311152434_create_dummy_table.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class CreateDummyTable < ActiveRecord::Migration[8.0]
def change
create_table :dummy_tables do |t|
t.string :dummy

t.timestamps
end
end
end

0 comments on commit 78a40de

Please sign in to comment.