Index: src/FinkiChattery/FinkiChattery.Database/FinkiChattery.Database.sqlproj
===================================================================
--- src/FinkiChattery/FinkiChattery.Database/FinkiChattery.Database.sqlproj	(revision 7146ebb2db66bf2d2437fe44c758e82313ba6278)
+++ src/FinkiChattery/FinkiChattery.Database/FinkiChattery.Database.sqlproj	(revision cba21c9a1d523e9ff556660606e850b7646e1414)
@@ -8,5 +8,5 @@
     <ProjectVersion>4.1</ProjectVersion>
     <ProjectGuid>{5e1219f5-fc7d-4138-811d-26934e946d30}</ProjectGuid>
-    <DSP>Microsoft.Data.Tools.Schema.Sql.Sql130DatabaseSchemaProvider</DSP>
+    <DSP>Microsoft.Data.Tools.Schema.Sql.Sql150DatabaseSchemaProvider</DSP>
     <OutputType>Database</OutputType>
     <RootPath>
@@ -69,4 +69,5 @@
     <Folder Include="dbo\Tables\Team" />
     <Folder Include="dbo\Tables\Student" />
+    <Folder Include="FullTextSearch" />
   </ItemGroup>
   <ItemGroup>
@@ -88,4 +89,6 @@
     <Build Include="dbo\Tables\Student\Student.sql" />
     <None Include="dbo\Tables\Student\Student.Debug.Seed.sql" />
+    <Build Include="FullTextSearch\FullTextIndexQuestion.sql" />
+    <Build Include="FullTextSearch\QuestionFullTextCatalog.sql" />
   </ItemGroup>
   <ItemGroup>
Index: src/FinkiChattery/FinkiChattery.Database/FullTextSearch/FullTextIndexQuestion.sql
===================================================================
--- src/FinkiChattery/FinkiChattery.Database/FullTextSearch/FullTextIndexQuestion.sql	(revision cba21c9a1d523e9ff556660606e850b7646e1414)
+++ src/FinkiChattery/FinkiChattery.Database/FullTextSearch/FullTextIndexQuestion.sql	(revision cba21c9a1d523e9ff556660606e850b7646e1414)
@@ -0,0 +1,3 @@
+﻿CREATE FULLTEXT INDEX ON [dbo].[Question] ([Title], [Text])
+KEY INDEX [PK_Question] ON [QuestionFullTextCatalog]
+WITH (CHANGE_TRACKING AUTO, STOPLIST OFF)
Index: src/FinkiChattery/FinkiChattery.Database/FullTextSearch/QuestionFullTextCatalog.sql
===================================================================
--- src/FinkiChattery/FinkiChattery.Database/FullTextSearch/QuestionFullTextCatalog.sql	(revision cba21c9a1d523e9ff556660606e850b7646e1414)
+++ src/FinkiChattery/FinkiChattery.Database/FullTextSearch/QuestionFullTextCatalog.sql	(revision cba21c9a1d523e9ff556660606e850b7646e1414)
@@ -0,0 +1,4 @@
+﻿CREATE FULLTEXT CATALOG [QuestionFullTextCatalog]
+    WITH ACCENT_SENSITIVITY = OFF
+    AS DEFAULT
+    AUTHORIZATION [dbo];
Index: src/FinkiChattery/FinkiChattery.Database/dbo/Tables/Question.sql
===================================================================
--- src/FinkiChattery/FinkiChattery.Database/dbo/Tables/Question.sql	(revision 7146ebb2db66bf2d2437fe44c758e82313ba6278)
+++ src/FinkiChattery/FinkiChattery.Database/dbo/Tables/Question.sql	(revision cba21c9a1d523e9ff556660606e850b7646e1414)
@@ -2,5 +2,5 @@
     [Id]           BIGINT           IDENTITY (1, 1) NOT NULL,
     [Uid]          UNIQUEIDENTIFIER NOT NULL,
-    [Title]        NVARCHAR (500)     NOT NULL,
+    [Title]        NVARCHAR (500)   NOT NULL,
     [Text]         NVARCHAR (MAX)   NULL,
     [StudentFk]    BIGINT           NOT NULL,
Index: src/FinkiChattery/FinkiChattery.HangfireDatabase/FinkiChattery.HangfireDatabase.sqlproj
===================================================================
--- src/FinkiChattery/FinkiChattery.HangfireDatabase/FinkiChattery.HangfireDatabase.sqlproj	(revision 7146ebb2db66bf2d2437fe44c758e82313ba6278)
+++ src/FinkiChattery/FinkiChattery.HangfireDatabase/FinkiChattery.HangfireDatabase.sqlproj	(revision cba21c9a1d523e9ff556660606e850b7646e1414)
@@ -8,5 +8,5 @@
     <ProjectVersion>4.1</ProjectVersion>
     <ProjectGuid>{c4cb8596-3f3a-4b4e-bec5-0720ff7cd532}</ProjectGuid>
-    <DSP>Microsoft.Data.Tools.Schema.Sql.Sql130DatabaseSchemaProvider</DSP>
+    <DSP>Microsoft.Data.Tools.Schema.Sql.Sql150DatabaseSchemaProvider</DSP>
     <OutputType>Database</OutputType>
     <RootPath>
