Created
April 21, 2016 18:01
-
-
Save munroebot/7cc8b11c99a624b25f831f3e6f8e6987 to your computer and use it in GitHub Desktop.
Teh SQL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table shopidentifyer.badges ( | |
badge_serial varchar (255) unique, | |
stripe_id varchar(255), | |
badge_status ENUM('ACTIVE','INACTIVE','LOST','BROKEN') DEFAULT 'ACTIVE', | |
created_on TIMESTAMP DEFAULT CURRENT_TIMESTAMP, | |
changed_on TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment