Skip to content

Commit

Permalink
Merge pull request #46 from DataScience-GT/dev
Browse files Browse the repository at this point in the history
quick fix
  • Loading branch information
vicente6j authored Oct 11, 2023
2 parents 083a88f + e8f9eb0 commit 7cb4611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/migrations/20230920150004_create_project_app_table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export async function up(knex: Knex): Promise<void> {
.createTable("project_apps", function (table) {
table.increments("project_inc").primary();
table.string("project_name", 255).unique();
table.string("contact_email", 255);
table.string("project_location", 255);
table.string("related_fields", 1000);
table.string("project_description", 1000);
table.integer("num_students").defaultTo(0);
Expand Down

0 comments on commit 7cb4611

Please sign in to comment.