This repository has been archived on 2025-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
appdb/tables/banner.sql
2009-10-09 00:08:02 +00:00

13 lines
194 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 datetime,
primary key(id)
)