We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a473cd commit 92ca509Copy full SHA for 92ca509
sql/README.md
@@ -2,10 +2,10 @@
2
3
4
- Never drop the configuration table as it may contain customer data and needs to live across EQL versions
5
-- Everything else should have a DROP IF EXISTS
6
-- Functions should be DROP and CREATE, instead of CREATE OR REPLACE
+- Everything else should have a `DROP IF EXISTS`
+- Functions should be `DROP` and `CREATE`, instead of `CREATE OR REPLACE`
7
- Data types cannot be changed once created, so dropping first is more flexible
8
-- Keep DROP and CREATE together in the code
+- Keep `DROP` and `CREATE` together in the code
9
- Types need to be dropped last, add to the `666-drop_types.sql`
10
11
0 commit comments