Skip to content

Instantly share code, notes, and snippets.

@tacoberu
Created September 23, 2018 11:57
Show Gist options
  • Save tacoberu/3d70bcfc2f471d90faa129843e662e30 to your computer and use it in GitHub Desktop.
Save tacoberu/3d70bcfc2f471d90faa129843e662e30 to your computer and use it in GitHub Desktop.
<?php
class UserDatabaseTable
{
const
TABLE_NAME = 'users',
COLUMN_ID = 'id',
COLUMN_NAME = 'username',
COLUMN_EMAIL = 'email',
COLUMN_FB_UID = 'fb_uid',
COLUMN_PASSWORD_HASH = 'password',
COLUMN_ROLE = 'role';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment