This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/tables/banner.sql
2004-03-15 16:22:00 +00:00

13 lines
195 B
SQL

CREATE TABLE banner (
id int not null,
desc text,
img varchar(255),
url varchar(255),
alt varchar(255),
imp int not null,
clk int not null,
lastmod timestamp,
primary key(id)
)