mirror of
https://github.com/OtusTeam/Spring.git
synced 2026-05-30 10:50:42 +00:00
7 lines
107 B
SQL
7 lines
107 B
SQL
DROP TABLE IF EXISTS PERSONS;
|
|
CREATE TABLE PERSONS
|
|
(
|
|
ID BIGINT PRIMARY KEY,
|
|
NAME VARCHAR(255)
|
|
);
|