Skip to content

Commit 62717f7

Browse files
committed
docs: replace auto-increment with serial
1 parent 8f6f4a0 commit 62717f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ The `CREATE` statement is executed via the `execute` remote method of the client
263263
// Create the ‘Students’ table with the ‘id’, ’name’, and ’age’ fields.
264264
sql:ExecutionResult result =
265265
check dbClient->execute(`CREATE TABLE student (
266-
id INT AUTO_INCREMENT,
266+
id INT SERIAL,
267267
age INT,
268268
name VARCHAR(255),
269269
PRIMARY KEY (id)

ballerina/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ The `CREATE` statement is executed via the `execute` remote method of the client
255255
// Create the ‘Students’ table with the ‘id’, ’name’, and ’age’ fields.
256256
sql:ExecutionResult result =
257257
check dbClient->execute(`CREATE TABLE student (
258-
id INT AUTO_INCREMENT,
258+
id INT SERIAL,
259259
age INT,
260260
name VARCHAR(255),
261261
PRIMARY KEY (id)

0 commit comments

Comments
 (0)