Skip to content

Commit a0caef4

Browse files
committed
Remove schema.rb file as it is no longer required.
1 parent f572cd4 commit a0caef4

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class CreateQaModules < ActiveRecord::Migration[7.2]
2+
def change
3+
create_table :qa_modules, id: :uuid, if_not_exists: true do |t|
4+
t.string :name
5+
t.uuid :parent_id
6+
7+
t.timestamps
8+
end
9+
10+
add_index :qa_modules, :parent_id, if_not_exists: true
11+
end
12+
end

db/schema.rb

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)