Move DB dir

This commit is contained in:
2024-08-05 19:00:09 +10:00
parent 7e9121f9f9
commit 2e0ddcc888
46 changed files with 235 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
# frozen_string_literal: true
ROM::SQL.migration do
change do
create_table :podcasts do
primary_key :id
column :name, :text, null: false
column :url, :text, null: false
column :overcast_id, :text, null: false
end
end
end