diaspora/db/migrate/20150708154727_create_scope.rb
2016-01-04 16:49:49 +09:00

9 lines
160 B
Ruby

class CreateScope < ActiveRecord::Migration
def change
create_table :scopes do |t|
t.string :name
t.timestamps null: false
end
end
end