0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 03:25:17 +08:00
discourse/db/migrate/20120311210245_create_sites.rb
2023-01-09 11:59:41 +00:00

10 lines
220 B
Ruby
Vendored

# frozen_string_literal: true
class CreateSites < ActiveRecord::Migration[4.2]
def change
create_table :sites do |t|
t.string :title, limit: 100, null: false
t.timestamps null: false
end
end
end