You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kubsu-sm5-ruby/lab2/db/migrations/001_create_student_table.sql

12 lines
299 B

CREATE TABLE IF NOT EXISTS student (
id INT AUTO_INCREMENT PRIMARY KEY,
git VARCHAR(255) NOT NULL,
surname VARCHAR(100) NOT NULL,
name VARCHAR(100) NOT NULL,
patronymic VARCHAR(100) NOT NULL,
birth_date DATE NOT NULL,
phone VARCHAR(20),
telegram VARCHAR(50),
email VARCHAR(100)
);