versions and is faster for date/time computations. Modify object creation methods to specify any time fields that were previously updated with timestamp properties.
13 lines
194 B
SQL
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)
|
|
)
|