7 lines
175 B
SQL
7 lines
175 B
SQL
CREATE TABLE `distributors` (
|
|
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
`agency` text NOT NULL,
|
|
`contact` text NOT NULL,
|
|
`mobile` text NOT NULL,
|
|
`address` text
|
|
);
|