Skip to content

Commit

Permalink
fix mariadb drop_view
Browse files Browse the repository at this point in the history
  • Loading branch information
flarco committed Feb 26, 2024
1 parent 9cdd1bf commit 61867a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbio/database/templates/mariadb.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
core:
drop_table: drop table if exists {table}
drop_view: drop table if exists {view}
drop_view: drop view if exists {view}
create_table: create table if not exists {table} ({col_types})
create_index: create index {index} on {table} ({cols})
insert: insert into {table} ({fields}) values ({values})
Expand Down

0 comments on commit 61867a1

Please sign in to comment.