Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.63 KB | None | 0 0
  1. CREATE TABLE `auto_notifications` (
  2.   `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  3.   `is_auto` tinyint(1) NOT NULL DEFAULT '0',
  4.   `is_email` tinyint(1) NOT NULL DEFAULT '0',
  5.   `margin_operator` int(11) NOT NULL DEFAULT '0',
  6.   `margin_min` int(11) NOT NULL DEFAULT '0',
  7.   `margin_max` int(11) NOT NULL DEFAULT '0',
  8.   `profit_operator` int(11) NOT NULL DEFAULT '0',
  9.   `profit_min` int(11) DEFAULT '0',
  10.   `profit_max` int(11) DEFAULT '0',
  11.   `balance_operator` int(11) DEFAULT '0',
  12.   `balance_min` int(11) DEFAULT '0',
  13.   `balance_max` int(11) DEFAULT '0',
  14.   PRIMARY KEY (`id`)
  15. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement