このコミットが含まれているのは:
2025-02-27 22:09:51 +09:00
コミット c6deba7c26
4個のファイルの変更120行の追加4行の削除
+11
ファイルの表示
@@ -0,0 +1,11 @@
class CreateUsers < ActiveRecord::Migration[7.0]
def change
create_table :users do |t|
t.string :name, limit: 255
t.string :inheritance_code, limit: 64, null: false
t.string :role, limit: 255, null: false
t.boolean :banned, default: false, null: false
t.timestamps
end
end
end