You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require "granite/adapter/mysql"
class Post < Granite::Base
connection mysql
table posts # this strange
# table :posts also work
# table "posts" also work
column id : Int64, primary: true # Primary key, defaults to AUTO INCREMENT
column name : String? # Nilable field
column body : String # Not nil field
end
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: