Is it possible to get the raw SQL queries that would be used to create the database tables as they are defined in the db config file?
In other words, I want to convert something like this into raw SQL:
const Experience = defineTable({
columns: {
id: column.text({ primaryKey: true }),
user_id: column.text({ references: () => Users.columns.id }),
job_title: column.text(),
start_month: column.text(),
start_year: column.text(),
end_month: column.text(),
end_year: column.text(),
created_at: column.date(),
updated_at: column.date(),
},
})