Skip to content

Commit d6f3759

Browse files
committed
Rebuild iko docs
1 parent b68f829 commit d6f3759

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

iko/commands/index.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1087,7 +1087,7 @@ <h2 id="sqitch-commands">🔁 Sqitch Commands</h2>
10871087
</code></pre></div>
10881088
<hr />
10891089
<h2 id="ad-hoc-migrations">🧩 Ad-Hoc Migrations</h2>
1090-
<h4 id="add"><code>add</code></h4>
1090+
<h3 id="add">add</h3>
10911091
<p>If your change doesn’t match one of the built-in commands, you can use <code>add</code> to
10921092
create a named migration manually:</p>
10931093
<div class="highlight"><pre><span></span><code>add<span class="w"> </span>create_customer_view
@@ -1099,7 +1099,7 @@ <h4 id="add"><code>add</code></h4>
10991099
optional.</p>
11001100
</blockquote>
11011101
<p>More details: <a href="https://sqitch.org/docs/manual/sqitch-add/">sqitch-add docs</a></p>
1102-
<h3 id="add_as"><code>add_as</code></h3>
1102+
<h3 id="add_as">add_as</h3>
11031103
<p>Create a custom migration with inline deploy SQL.</p>
11041104
<p>This is useful in scripts when your change isn’t covered by a built-in command
11051105
but you want to define the deploy step inline (instead of editing manually like
@@ -1121,7 +1121,7 @@ <h3 id="add_as"><code>add_as</code></h3>
11211121
</code></pre></div>
11221122
<hr />
11231123
<h2 id="comments">🗨️ Comments</h2>
1124-
<h4 id="comment"><code>comment</code></h4>
1124+
<h3 id="comment">comment</h3>
11251125
<p>Add or update a comment on a Postgres object.</p>
11261126
<p><strong>Syntax:</strong></p>
11271127
<div class="highlight"><pre><span></span><code>comment<span class="w"> </span>&lt;object&gt;<span class="w"> </span>&lt;comment&gt;
@@ -1131,7 +1131,7 @@ <h4 id="comment"><code>comment</code></h4>
11311131
</code></pre></div>
11321132
<hr />
11331133
<h2 id="extensions">🧩 Extensions</h2>
1134-
<h4 id="create_extension"><code>create_extension</code></h4>
1134+
<h3 id="create_extension">create_extension</h3>
11351135
<p>Install a Postgres extension.</p>
11361136
<p><strong>Syntax:</strong></p>
11371137
<div class="highlight"><pre><span></span><code>create_extension<span class="w"> </span>&lt;extension&gt;
@@ -1141,7 +1141,7 @@ <h4 id="create_extension"><code>create_extension</code></h4>
11411141
</code></pre></div>
11421142
<hr />
11431143
<h2 id="functions">🧠 Functions</h2>
1144-
<h3 id="create_function"><code>create_function</code></h3>
1144+
<h3 id="create_function">create_function</h3>
11451145
<p>Create a function using your editor.</p>
11461146
<p><strong>Syntax:</strong></p>
11471147
<div class="highlight"><pre><span></span><code>create_function<span class="w"> </span>&lt;<span class="k">function</span>&gt;
@@ -1150,7 +1150,7 @@ <h3 id="create_function"><code>create_function</code></h3>
11501150
<div class="highlight"><pre><span></span><code>create_function<span class="w"> </span>create_user
11511151
</code></pre></div>
11521152
<hr />
1153-
<h3 id="create_function_as"><code>create_function_as</code></h3>
1153+
<h3 id="create_function_as">create_function_as</h3>
11541154
<p>Define a function inline — useful in scripts.</p>
11551155
<p><strong>Syntax:</strong></p>
11561156
<div class="highlight"><pre><span></span><code>create_function_as<span class="w"> </span>&lt;<span class="k">function</span>&gt;<span class="w"> </span><span class="s">&lt;&lt;&#39;SQL&#39;</span>
@@ -1168,7 +1168,7 @@ <h3 id="create_function_as"><code>create_function_as</code></h3>
11681168
</code></pre></div>
11691169
<hr />
11701170
<h2 id="grants">🔐 Grants</h2>
1171-
<h3 id="grant_execute"><code>grant_execute</code></h3>
1171+
<h3 id="grant_execute">grant_execute</h3>
11721172
<p>Grant execute permission on a function.</p>
11731173
<p><strong>Syntax:</strong></p>
11741174
<div class="highlight"><pre><span></span><code>grant_execute<span class="w"> </span>&lt;<span class="k">function</span>&gt;<span class="w"> </span>&lt;signature&gt;<span class="w"> </span>&lt;role&gt;
@@ -1177,7 +1177,7 @@ <h3 id="grant_execute"><code>grant_execute</code></h3>
11771177
<div class="highlight"><pre><span></span><code>grant_execute<span class="w"> </span>login<span class="w"> </span><span class="s1">&#39;(text,text)&#39;</span><span class="w"> </span>dbuser
11781178
</code></pre></div>
11791179
<hr />
1180-
<h3 id="grant_schema_usage"><code>grant_schema_usage</code></h3>
1180+
<h3 id="grant_schema_usage">grant_schema_usage</h3>
11811181
<p>Grant usage on a schema.</p>
11821182
<p><strong>Syntax:</strong></p>
11831183
<div class="highlight"><pre><span></span><code>grant_schema_usage<span class="w"> </span>&lt;schema&gt;<span class="w"> </span>&lt;role&gt;
@@ -1186,7 +1186,7 @@ <h3 id="grant_schema_usage"><code>grant_schema_usage</code></h3>
11861186
<div class="highlight"><pre><span></span><code>grant_schema_usage<span class="w"> </span>api<span class="w"> </span>dbuser
11871187
</code></pre></div>
11881188
<hr />
1189-
<h3 id="grant_role_membership"><code>grant_role_membership</code></h3>
1189+
<h3 id="grant_role_membership">grant_role_membership</h3>
11901190
<p>Grant membership in a role.</p>
11911191
<p><strong>Syntax:</strong></p>
11921192
<div class="highlight"><pre><span></span><code>grant_role_membership<span class="w"> </span>&lt;role_specification&gt;<span class="w"> </span>&lt;role&gt;
@@ -1195,7 +1195,7 @@ <h3 id="grant_role_membership"><code>grant_role_membership</code></h3>
11951195
<div class="highlight"><pre><span></span><code>grant_role_membership<span class="w"> </span>authenticator<span class="w"> </span>dbuser
11961196
</code></pre></div>
11971197
<hr />
1198-
<h3 id="grant_table_privilege"><code>grant_table_privilege</code></h3>
1198+
<h3 id="grant_table_privilege">grant_table_privilege</h3>
11991199
<p>Grant privileges on a table.</p>
12001200
<p><strong>Syntax:</strong></p>
12011201
<div class="highlight"><pre><span></span><code>grant_table_privilege<span class="w"> </span>&lt;type&gt;<span class="w"> </span>&lt;table&gt;<span class="w"> </span>&lt;role&gt;
@@ -1205,7 +1205,7 @@ <h3 id="grant_table_privilege"><code>grant_table_privilege</code></h3>
12051205
</code></pre></div>
12061206
<hr />
12071207
<h2 id="roles">👤 Roles</h2>
1208-
<h3 id="create_role"><code>create_role</code></h3>
1208+
<h3 id="create_role">create_role</h3>
12091209
<p>Create a nologin role.</p>
12101210
<p><strong>Syntax:</strong></p>
12111211
<div class="highlight"><pre><span></span><code>create_role<span class="w"> </span>&lt;role&gt;
@@ -1214,7 +1214,7 @@ <h3 id="create_role"><code>create_role</code></h3>
12141214
<div class="highlight"><pre><span></span><code>create_role<span class="w"> </span>dbuser
12151215
</code></pre></div>
12161216
<hr />
1217-
<h3 id="create_login_role"><code>create_login_role</code></h3>
1217+
<h3 id="create_login_role">create_login_role</h3>
12181218
<p>Create a login role with password.</p>
12191219
<p><strong>Syntax:</strong></p>
12201220
<div class="highlight"><pre><span></span><code>create_login_role<span class="w"> </span>&lt;role&gt;<span class="w"> </span>&lt;password&gt;
@@ -1232,7 +1232,7 @@ <h2 id="schemas">🏗️ Schemas</h2>
12321232
</code></pre></div>
12331233
<hr />
12341234
<h2 id="tables">🧱 Tables</h2>
1235-
<h3 id="create_table"><code>create_table</code></h3>
1235+
<h3 id="create_table">create_table</h3>
12361236
<p>Create a table using your editor.</p>
12371237
<p><strong>Syntax:</strong></p>
12381238
<div class="highlight"><pre><span></span><code>create_table<span class="w"> </span>&lt;table&gt;
@@ -1241,7 +1241,7 @@ <h3 id="create_table"><code>create_table</code></h3>
12411241
<div class="highlight"><pre><span></span><code>create_table<span class="w"> </span>customer
12421242
</code></pre></div>
12431243
<hr />
1244-
<h3 id="create_table_as"><code>create_table_as</code></h3>
1244+
<h3 id="create_table_as">create_table_as</h3>
12451245
<p>Define a table inline — ideal for scripts.</p>
12461246
<p><strong>Syntax:</strong></p>
12471247
<div class="highlight"><pre><span></span><code>create_table_as<span class="w"> </span>&lt;table&gt;<span class="w"> </span><span class="s">&lt;&lt;&#39;SQL&#39;</span>
@@ -1259,7 +1259,7 @@ <h3 id="create_table_as"><code>create_table_as</code></h3>
12591259
</code></pre></div>
12601260
<hr />
12611261
<h2 id="triggers">🔁 Triggers</h2>
1262-
<h3 id="create_trigger"><code>create_trigger</code></h3>
1262+
<h3 id="create_trigger">create_trigger</h3>
12631263
<p>Create a trigger linked to a function.</p>
12641264
<p><strong>Syntax:</strong></p>
12651265
<div class="highlight"><pre><span></span><code>create_trigger<span class="w"> </span>&lt;trigger&gt;<span class="w"> </span>&lt;table&gt;<span class="w"> </span>&lt;<span class="k">function</span>&gt;
@@ -1271,7 +1271,7 @@ <h3 id="create_trigger"><code>create_trigger</code></h3>
12711271
<p>Note: Trigger names cannot be schema-qualified — they inherit the table's schema.</p>
12721272
</blockquote>
12731273
<hr />
1274-
<h3 id="create_trigger_as"><code>create_trigger_as</code></h3>
1274+
<h3 id="create_trigger_as">create_trigger_as</h3>
12751275
<p>Define a trigger inline.</p>
12761276
<p><strong>Syntax:</strong></p>
12771277
<div class="highlight"><pre><span></span><code>create_trigger_as<span class="w"> </span>&lt;trigger&gt;<span class="w"> </span>&lt;table&gt;<span class="w"> </span><span class="s">&lt;&lt;&#39;SQL&#39;</span>

0 commit comments

Comments
 (0)