We will first create a user table to store the user's information. The table should have the following columns: id, username, password and email. The id column is the primary key and it should be unique:
- # Create a new migration file called "migrations/0001_initial" with the following content:
- class Migration(migrations.Migration):
- def change(self, orm):
- """Add User Table"""
- self.add_table('users', fields=['id', 'username', 'password', 'email'])
- def migrate(self):
- oracle_session =
Share a personalized message with your friends.