Files
build-web-application-with-…/pt-br/code/src/apps/ch.5.3/schema.sql
2015-07-05 22:56:01 -03:00

7 lines
163 B
SQL

CREATE TABLE `userinfo` (
`uid` INTEGER PRIMARY KEY AUTOINCREMENT,
`username` VARCHAR(64) NULL,
`department` VARCHAR(64) NULL,
`created` DATE NULL
);