7 lines
90 B
SQL
7 lines
90 B
SQL
create table if not exists stores
|
|
(
|
|
street varchar(100),
|
|
description text
|
|
)
|
|
|