21 lines
		
	
	
		
			548 B
		
	
	
	
		
			TypeScript
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			548 B
		
	
	
	
		
			TypeScript
		
	
	
	
import BaseSchema from "@ioc:Adonis/Lucid/Schema";
 | 
						|
 | 
						|
export default class extends BaseSchema {
 | 
						|
  protected tableName = "users";
 | 
						|
 | 
						|
  public async up() {
 | 
						|
    this.schema.createTable(this.tableName, (table) => {
 | 
						|
      table.increments("id_user").primary();
 | 
						|
 | 
						|
      table.string("username", 50).notNullable();
 | 
						|
      table.string("password", 300).notNullable();
 | 
						|
      table.timestamp("created_at", { useTz: true });
 | 
						|
      table.timestamp("updated_at", { useTz: true });
 | 
						|
    });
 | 
						|
  }
 | 
						|
 | 
						|
  public async down() {
 | 
						|
    this.schema.dropTable(this.tableName);
 | 
						|
  }
 | 
						|
}
 |