Created
May 31, 2021 14:26
-
-
Save shrinivdeshmukh/ea634bd9ddb010c07b7ca285e953a5e5 to your computer and use it in GitHub Desktop.
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
tables: | |
userinfo: | |
columns: | |
- name: id | |
type: integer | |
primary_key: true | |
- name: firstname | |
type: varchar | |
- name: lastname | |
type: varchar | |
- name: dob | |
type: date | |
- name: contact | |
type: numeric | |
nullable: false | |
unique: true | |
- name: address | |
type: varchar | |
length: 350 # Column length changed from 200 to 350 | |
- name: country # New column added | |
type: varchar | |
length: 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment