blob: cbeab61bb5588042a3613afbf5a7cb76d57d2d6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<snippet>
<content><![CDATA[
CREATE TABLE IF NOT EXISTS ${1:table} (
${2:field...}
) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>CREATETABLE</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.sql</scope>
</snippet>
|