lenso-platform-runtime 0.1.0

Runtime function primitives for the Lenso backend framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use platform_core::Migration;

pub const RUNTIME_MIGRATIONS: &[Migration] = &[
    Migration {
        name: "runtime/0001_create_runtime_schema",
        sql: include_str!("../migrations/0001_create_runtime_schema.sql"),
    },
    Migration {
        name: "runtime/0002_create_function_runs",
        sql: include_str!("../migrations/0002_create_function_runs.sql"),
    },
    Migration {
        name: "runtime/0003_add_function_runs_summary_index",
        sql: include_str!("../migrations/0003_add_function_runs_summary_index.sql"),
    },
];