Advertisement
noam76

table_data_storage

May 15th, 2023
1,137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.13 KB | None | 0 0
  1.    CREATE TABLE data_storage (
  2.        id INT(11) NOT NULL AUTO_INCREMENT,
  3.        value INT(11) NOT NULL,
  4.        PRIMARY KEY (id)
  5.    );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement