Skip to content

Schema Files ALPHA v4+

Leaf MVC inherited all the teachings of Laravel and Ruby on Rails, including the use of migrations, seeders, and factories which made creating, testing and seeding databases a breeze. While this is great and has been tried and tested over the years, having multiple files for a single database table can be a bit of a hassle. This is why we introduced Schema Files in Leaf MVC v4.

What are Schema Files?

Schema files build on the JSON schema idea we introduced in earlier Leaf MVC versions, but they take things further. Instead of juggling separate files for migrations, seeders, and factories, you can handle everything in one place. They’re written in YAML, so they’re easy to read and work with—no extra hassle, no repeating yourself.

flights.yml
yml
columns:
  to: string
  from: string
  identifier: string

seeds:
  count: 10
  data:
    to: '@faker.city'
    from: '@faker.city'
    identifier: '@faker.uuid'

Creating a Schema File

Aloe comes with a g:schema command that you can use to generate a database file. You can generate a database file by running:

bash
php leaf g:schema <table-name>

Remember, every schema file is tied to a table in your database. When you run the command above, Leaf will create a schema file in your app/database directory with the name <table-name>.yml. Here’s an example:

bash
php leaf g:schema posts

This will create a schema file at app/database/posts.yml which looks like this:

posts.yml
yml
# schema files add auto-increments and timestamps by default

# you can add all the columns you want under the columns key
columns:
  name: string
  identifier:
    type: string
    unique: true
  verified_at:
    type: timestamp
    nullable: true

# you can add foreign ids for other models under the relationships key key
relationships:
  - User

# seeds are optional and can be used to populate the database with dummy data
seeds:
  count: 5
  truncate: true
  data:
    name: '@faker.name'
    identifier: '@faker.uuid'
    verified_at: '@tick.format:YYYY-MM-DD HH:mm:ss'

Breaking this file down, there are three main sections:

  • columns: This is used to set the columns of the table. The key is the column name and the value is a key value pair of column properties. The available properties are:

    • type: The type of the column. This can be string, integer, timestamp or any type supported by Laravel's Eloquent.
    • length: The length of the column. This is only used for string columns.
    • unique: This is used to set the column as unique.
    • nullable: This is used to set the column as nullable.
    • default: This is used to set the default value of the column.
    • autoIncrement: This is used to set the column as auto-incrementing.
    • unsigned: This is used to set the column as unsigned.
    • index: This is used to set the column as an index.
    • primary: This is used to set the column as the primary key.
    • foreign: This is used to set the column as a foreign key. The value of this key is the table and column the column is a foreign key to.
    • onDelete: This is used to set the ON DELETE constraint of the foreign key.
    • onUpdate: This is used to set the ON UPDATE constraint of the foreign key.
  • seeds: This is used to set the seeders of the table. The available properties are:

    • count: This is used to set the number of seeds to generate.
    • data: This is used to set the data of the seeds. The key is the column name and the value is the value of the column. You can use @faker.[value] to generate fake data for the column.
    • truncate: This is used to truncate the table before seeding.
  • relationships: This is used to set the relationships of the table. The value is an array of models the table is related to. This is used to generate foreign keys for the table.

Besides these, Schema files also set a lot of defaults for you. For instance, the id column is set as the primary key and auto-incrementing by default. Timestamps are also added by default. You can override these defaults by adding the id and timestamps keys to your schema file. Here's an example:

posts.yml
yml
increments: false # this will remove the auto-incrementing id column
timestamps: false # this will remove the timestamps columns

Once you turn off auto-increments, you can add your own id column. Here's an example:

posts.yml
yml
increments: false

columns:
  id:
    type: integer
    primary: true

...

Database tables

Traditionally, migrations are used to create database tables and modify them. In Leaf MVC, every schema file is tied to a particular table which is the name of the file. All you need to do is modify the columns of the table using the columns key in your schema file. Here's an example:

users.yml
yml
columns:
  name: string
  email:
    type: string
    length: 255
    unique: true
  password: string
  email_verified_at: timestamp

In this example, we create a users table with name, email, password, and email_verified_at columns. We can then migrate this table to our database using the db:migrate command:

bash
php leaf db:migrate

You can have multiple schema files in your app/database directory, each tied to a particular table. When you run the db:migrate command, Leaf will migrate all the tables in your app/database directory. If you want to migrate only a specific table, you can pass the table name as an argument to the db:migrate command:

bash
php leaf db:migrate users

Migration histories

Migration histories are used to keep track of the migrations that have been run on your database. This is useful for keeping track of the state of your database so you can easily roll back to a previous state if needed. Unlike in other frameworks, Leaf MVC does require you to manually create migrations to keep track of your migration history. This is done automatically for you.

Every time you edit a schema file and run the db:migrate command, Leaf will automatically keep track of the migrations that have been run on your database, which means less time scrambling through migration files and more time building your app.

In the end, this means you can continue to use php leaf db:rollback to roll back your database to a previous state.

Seeding your database

Database seeds are a way to populate a database with initial data. This initial data can be used to set up default values or pre-populate a database with test data. Database seeds typically contain small amounts of data, such as default settings, test data, or sample records.

Seeders are used to populate your database with dummy data. In Leaf MVC, you can create seeders in your database files. The seeds key in your database file is used to create seeders. Here's an example of a seeder:

users.yml
yml
seeds:
  data:
    - name: 'Example User'
      email: 'example@example.com'
      password: '@hash:passwordForThisUser' # @hash requires leafs/password
    - name: 'Another User'
      email: 'another@example.com'
      password: '@hash:passwordForThisUser' # @hash requires leafs/password

In this example, we create a seeder that seeds the users table with two example users. We are passing an array of seeds to the data key, each seed being a key value pair of column name and value.

Another way to generate multiple seeds is to use the count key. When using the count key, you can pass an integer value to generate multiple seeds with the same data. Here's an example:

users.yml
yml
seeds:
  count: 10
  data:
    name: 'Example User'
    email: 'example@example.com'
    password: '@hash:password'

After creating your seeder, you can run your seeders using the db:seed command:

bash
php leaf db:seed

This will generate 10 seeds for the users table with the same data which is not very useful. To generate multiple fake seeds, you can use what other frameworks call a factory.

In Leaf MVC, factories and seeders are the same thing as we believe this confusion is unnecessary. If you want to generate fake data for your seeders, you can add @faker.[value] as the value of a column in your seeder. Here's an example:

users.yml
yml
seeds:
  count: 10
  data:
    name: '@faker.name'
    email: '@faker.email'
    password: '@hash:password'

In this example, we're generating 10 fake seeds for the users table.

After adding your seeds, you can run your seeders using the db:seed command:

bash
php leaf db:seed

If you want to seed a specific table, you can pass the table name as an argument to the db:seed command:

bash
php leaf db:seed users

Released under the MIT License.