Skip to content

Instantly share code, notes, and snippets.

@shrinivdeshmukh
Created May 31, 2021 14:26
Show Gist options
  • Save shrinivdeshmukh/ea634bd9ddb010c07b7ca285e953a5e5 to your computer and use it in GitHub Desktop.
Save shrinivdeshmukh/ea634bd9ddb010c07b7ca285e953a5e5 to your computer and use it in GitHub Desktop.
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