Skip to content

Commit 78a40de

Browse files
Add dummy migration
1 parent d26352e commit 78a40de

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
pull_request:
66
push:
7-
branches: [main]
7+
# branches: [main]
88

99
permissions:
1010
pull-requests: write
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class CreateDummyTable < ActiveRecord::Migration[8.0]
2+
def change
3+
create_table :dummy_tables do |t|
4+
t.string :dummy
5+
6+
t.timestamps
7+
end
8+
end
9+
end

0 commit comments

Comments
 (0)