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 admins ( | |
id uuid not null, | |
name text not null, | |
email text not null, | |
encrypted_password text not null, | |
reset_password_token text not null, | |
reset_password_sent_at timestamp, | |
remember_created_at timestamp, | |
sign_in_count integer not null, |
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
public class className{ | |
//variables declaration if any | |
//methods declaration | |
} |